- Python网络编程简介
- Python网络编程开发环境
- Python Internet协议模块
- Python IP地址
- Python DNS查找
- Python路由
- Python HTTP请求
- Python HTTP响应
- Python HTTP标头
- Python自定义HTTP请求
- Python请求状态代码
- Python HTTP验证
- Python HTTP数据下载
- Python连接重用
- Python网络接口
- Python Socket程序
- Python HTTP客户端
- Python HTTP服务器
- Python构建URL
- Python Web表单提交
- Python数据库和SQL
- Python Telnet
- Python电子邮件
- Python SMTP
- Python POP3
- Python IMAP
- Python SSH
- Python FTP
- Python SFTP
- Python Web服务器
- Python上传数据
- Python代理服务器
- Python列出目录
- Python远程过程调用
Python SFTP
FTP也称为SSH文件传输协议。它是一种网络协议,可通过任何可靠的数据流提供文件访问,文件传输和文件管理。该程序通过安全通道(例如SSH)运行,服务器已对客户端进行身份验证,并且该协议可使用客户端用户的身份。
pysftp
模块是SFTP的简单接口。该模块提供高级抽象和基于任务的例程来处理SFTP需求。使用以下命令将模块安装到python环境中。
pip install pysftp
示例
在下面的示例中,使用sftp登录到远程服务器,然后获取在指定目录中放置一些文件。
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 FTP
下一篇:Python Web服务器
关注微信小程序
扫描二维码
程序员编程王