How to Solve NameError: name 'mimetypes' is not defined

Solution: Import the 'mimetypes' module

# Add the following line to the top of your code
import mimetypes

 

For more information:
Python mimetypes