How to Solve NameError: name 'FTP' is not defined -- ftplib

Solution: Import the 'FTP' module

To Solve the error, add the following line to the top of your code.

from ftplib import FTP

 

For more information:
Python ftplib FTP