4

我正在使用 Pysftp 来 sftp 放置大量文件,并且希望在它运行时获得一些进度输出,所以我知道它是如何做的。我可以使用详细选项(或等效选项)来获得该输出吗?

谢谢。

4

1 回答 1

0

我可能在这里错误地导入了 paramiko,因为无论如何我相信它在 pysftp 中,但你应该得到 jist。

import logging
import paramiko
import pysftp
paramiko.util.log_to_file('log_debug.txt', level = 'DEBUG')
# As far as I can see you can use DEBUG, INFO, WARNING or ERROR here but there's possibly more
with pysftp.Connection([whatever you're doing here normally]) as sftp:
    sftp.put([or whatever you're doing here instead])
with open('log_debug.txt') as logfile:
    log = logfile.read()
print (log)

显然你不必打印它,做你喜欢的事情......
我只是通过尝试做类似的事情得到这个,我不是专家!

于 2018-12-14T14:58:42.673 回答