API Docs https://openweathermap.org/current
export WEATHER_API_KEY=<TOKENID>
echo $WEATHER_API_KEY
python -m venv venv && source venv/bin/activate #Linux
python -m venv venv && \venv\Scripts\activate #Windows
python -m venv venv
source .venv/bin/activate
(venv) drew@Andrews-MacBook-Pro%
deactivate
pip install -r requirements.txt
python main.py
pip list
python --version
pip --version
If trying to do this with VS CODE ensure you have your files open on the left side aka the workspace
Command+shift+p select interpreter and chose .venv/bin python