How to Solve NameError: name 'tzinfo' is not defined -- datetime

Solution: Import the 'tzinfo' module

# Add the following line to the top of your code
from datetime import tzinfo

 

For more information:
datetime tzinfo