connecting ftp server using python

27,712

Solution 1

Try below code, even i have faced same problems before.

import ftplib
server = ftplib.FTP()
server.connect('192.168.135.101', 5556)
server.login('svgn','123456')
# You don't have to print this, because this command itself prints dir contents 
server.dir()

Solution 2

You can also try below code

from ftplib import FTP


global ftp
ftp = FTP('192.168.135.101', user='svgn', passwd='123456')
print "connected to FTP"
Share:
27,712
Admin
Author by

Admin

Updated on April 09, 2020

Comments

  • Admin
    Admin about 4 years

    I try to connect to an ftp server in my phone using python code and I get an error.

    Code

    import ftplib
    server = ftplib.FTP()
    server.connect('192.168.135.101', 5556)
    server.login('svgn','123456')
    print (server.dir())
    

    Error

    C:\Python27\python.exe C:/Users/alisivgin/PycharmProjects/untitled2/deneme2.py Traceback (most recent call last): File "C:/Users/alisivgin/PycharmProjects/untitled2/deneme2.py", line 3, in server.connect('192.168.135.101', 5556) File "C:\Python27\lib\ftplib.py", line 132, in connect self.sock = socket.create_connection((self.host, self.port), self.timeout) File "C:\Python27\lib\socket.py", line 571, in create_connection raise err socket.error: [Errno 10061] Hedef makine etkin olarak reddetti�inden ba�lant� kurulamad

    Process finished with exit code 1

    Thanks.