python ftp发送文件_ftplib模块

发布时间:2020-02-27编辑:脚本学堂
python ftp方式发送文件的代码,python ftplib模块用法,一起来学习下。

ftplib模块通过ftp发送文件的方法

代码:
#!/usr/bin/env python
# www.jb200.com

import ftplib  # We import the FTP module
session = ftplib.FTP('myserver.com','login','passord') # Connect to the FTP server
myfile = open('toto.txt','rb')      # Open the file to send
session.storbinary('STOR toto.txt', myfile)     # Send the file
myfile.close()     # Close the file
session.quit()