Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install python ftplib in windows?

Tags:

python

ftp

ftplib

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.

like image 602
user3872486 Avatar asked Dec 19 '22 11:12

user3872486


1 Answers

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']
like image 53
ettanany Avatar answered Jan 08 '23 12:01

ettanany