Python SFTP
Python SFTP
FTP也称为SSH文件传输协议。它是一种网络协议,可通过任何可靠的数据流提供文件访问,文件传输和文件管理。该程序通过安全通道(例如SSH)运行,服务器已对客户端进行身份验证,并且该协议可使用客户端用户的身份。
pysftp模块是SFTP的简单接口。该模块提供高级抽象和基于任务的例程来处理SFTP需求。使用以下命令将模块安装到python环境中。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.com # Date : 2020-08-25 pip install pysftp
示例
在下面的示例中,使用sftp登录到远程服务器,然后获取在指定目录中放置一些文件。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.com # Date : 2020-08-25 import pysftp with pysftp.Connection('hostname', username='me', password='secret') as sftp: with sftp.cd('/allcode'): # temporarily chdir to allcode sftp.put('/pycode/filename') # upload file to allcode/pycode on remote sftp.get('remote_file') # get a remote file
当运行上面的代码时,可以看到allcode目录中存在的文件列表,还可以在指定目录中放置或获取一些文件。
相关文章
- Python中find函数如何使用
- 在Python里面调用Golang代码的方法
- Python修改列表元素的方法
- Python Pyperclip模块怎么安装和使用
- Python异步之怎么保护任务免于取消
- Python异步之如何获取当前和正在运行任务
- Python中Matplotlib图像如何添加标签
- Python网络爬虫之如何获取网络数据
- python操作Excel神器openpyxl如何使用
- Python 开发环境
- Python HTTP数据下载
- Python 连接重用
- Python Socket程序
- Python HTTP客户端
- Python 构建URL
- Python SSH
- Python列出目录
- Python 线程并发
- Python 同步线程
- Python 线程池