gitextract_v1nocjzt/ ├── .github/ │ └── workflows/ │ ├── deploy.yml │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── requirements-dev.txt ├── src/ │ └── api/ │ ├── main.py │ ├── requirements.txt │ └── weather.py ├── terraform/ │ ├── .terraform.lock.hcl │ ├── cloud_function.tf │ ├── locals.tf │ ├── main.tf │ └── variables.tf └── tests/ └── test_weather.py