当前位置:天才代写 > tutorial > Python教程 > python通过ftp上传文件

python通过ftp上传文件

2018-05-18 08:00 星期五 所属: Python教程 浏览:453

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

python">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()                                         # Close FTP session

标签:python

 

    关键字:

天才代写-代写联系方式