This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
The script contains example of the paramiko usage for large file downloading. | |
It implements :func:`download` with limited number of concurrent requests to server, whereas | |
paramiko implementation of the :meth:`paramiko.SFTPClient.getfo` send read requests without | |
limitations, that can cause problems if large file is being downloaded. | |
""" | |
import logging | |
import os |