“模块对象不可调用”cpanel Web服务器上的ftp上载文件出错

问题描述 投票:0回答:1

我试图通过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
python cpanel ftplib
1个回答
1
投票

下面的代码没有你得到的错误。

import ftplib 
ftp = ftplib.FTP('ftp.example.com')
ftp.login (username='xxxxxxxxxxxxxxx', password="xxxxxxxx")
ftp.cwd('/home/example/public_html/img')
© www.soinside.com 2019 - 2024. All rights reserved.