5

I want to write some ftp program using python. Please help me to install "ftplib" in windows 7.

I have tried to install it but not succeed.

user3872486
  • 97
  • 1
  • 2
  • 10

1 Answers1

14

ftplib is a built-in Python module, you do not need to install it. Check its documentation here

From Python console:

>>> import ftplib
>>>
>>> dir()
['__builtins__', '__doc__', '__name__', '__package__', 'ftplib']
ettanany
  • 19,038
  • 9
  • 47
  • 63