Python suds

用suds.client创建Client对象。并在控制节点抓包,会有缓存记录,保存路径可以通过suds.cache中的ObjectCache查看。

默认保存一天。

Python suds_第1张图片

缓存路径:

from suds.cache import ObjectCache
oc = ObjectCache()
print(oc.location)  # print cache path

参考:

https://www.cnblogs.com/flysun/archive/2009/09/29/1570705.html

https://blog.csdn.net/huyoufu200920201078/article/details/82018964

你可能感兴趣的:(Linux,python)