├── .gitignore ├── README.md ├── requirements.txt └── src ├── __init__.py └── weather_dashboard.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | *.zip 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaeInTheCloud/30days-weather-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.26.137 2 | python-dotenv==1.0.0 3 | requests==2.28.2 4 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/weather_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaeInTheCloud/30days-weather-dashboard/HEAD/src/weather_dashboard.py --------------------------------------------------------------------------------