How to install python ftplib in windows?
Asked Answered
C

1

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.

Citify answered 15/12, 2016 at 17:16 Comment(1)
If your problem is solved, please select the answer belowMowry
T
15

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']
Tumble answered 15/12, 2016 at 17:22 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.