- Python-网络编程
- Python-网络简介
- Python-网络环境
- Python - 互联网协议
- 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-远程登录
- Python - 电子邮件消息
- Python-SMTP
- Python-POP3
- Python-IMAP
- Python-SSH
- Python-FTP
- Python-SFTP
- Python - Web 服务器
- Python-上传数据
- Python-代理服务器
- Python - 目录列表
- Python-远程过程调用
- Python - RPC JSON 服务器
- Python - 谷歌地图
- Python - RSS 源
Python-上传数据
我们可以使用处理 ftp 或文件传输协议的 python 模块将数据上传到服务器。
我们需要安装ftplib模块来实现这一点。
pip install ftplib
使用 ftplib
在下面的示例中,我们使用 FTP 方法连接到服务器,然后提供用户凭据。接下来我们提到文件的名称以及在服务器中发送和存储文件的 storbinary 方法。
import ftplib ftp = ftplib.FTP("127.0.0.1") ftp.login("username", "password") file = open('index.html','rb') ftp.storbinary("STOR " + file, open(file, "rb")) file.close() ftp.quit()
当我们运行上面的程序时,我们观察到该文件的副本已在服务器中创建。
使用 ftpreety
与 ftplib 类似,我们可以使用 ftpreety 安全地连接到远程服务器并上传文件。我们也可以使用 ftpreety 下载文件。下面的程序说明了同样的情况。
from ftpretty import ftpretty # Mention the host host = "127.0.0.1" # Supply the credentisals f = ftpretty(host, user, pass ) # Get a file, save it locally f.get('someremote/file/on/server.txt', '/tmp/localcopy/server.txt') # Put a local file to a remote location # non-existent subdirectories will be created automatically f.put('/tmp/localcopy/data.txt', 'someremote/file/on/server.txt')
当我们运行上面的程序时,我们观察到该文件的副本已在服务器中创建。