我尝试通过python将文件发送到cpanl Web服务器,并且第一次创建ftp用户,然后使用此代码进行上传,但引发以下错误
python代码:
import ftplib as FTP
ftp = FTP("ftp.example.com")
ftp.login (username='xxxxxxxxxxxxxxx', password="xxxxxxxx")
ftp.cwd('/home/example/public_html/img')
def image_ftp_send():
filename = '1.jpg'
ftp.storbinary('STOR '+filename , open(file, 'rb'))
ftp.quit()
错误:
Traceback (most recent call last):
File "Image ftp", line 24, in <module>
ftp = FTP("ftp.example.com")
TypeError: 'module' object is not callabl
答案 0 :(得分:1)
以下代码没有您收到的错误。
import ftplib
ftp = ftplib.FTP('ftp.example.com')
ftp.login (username='xxxxxxxxxxxxxxx', password="xxxxxxxx")
ftp.cwd('/home/example/public_html/img')