how to import a module in python
Step 1 - Go to the terminal for the project where yo want to add that module
Step 2 - Download pip (it will most probably be downloaded)
Windows - py -m install --upgrade pip
Mac - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo easy_install pip
Step 3 - Download the module - pip install modulename
Step 4 - Import the module - import modulname # This line should be the first line in the code