我试图通过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
下面的代码没有你得到的错误。
import ftplib
ftp = ftplib.FTP('ftp.example.com')
ftp.login (username='xxxxxxxxxxxxxxx', password="xxxxxxxx")
ftp.cwd('/home/example/public_html/img')