- Python - 网络编程
- 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 - 套接字编程
- 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 - RPC JSON 服务器
- Python - Google 地图
- Python - RSS 提要
Python - SFTP
SFTP 又称为 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
当我们运行上面的代码,我们能够看到当前目录中存在的文件列表,并且可以在该目录中放置和获取一些文件。
广告