├── .circleci └── config.yml ├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── api.py ├── entrypoint.sh ├── entrypoint.tests.sh ├── requirements.txt ├── tests ├── __init__.py └── test_weather_service.py └── weather_service.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/api.py -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /entrypoint.tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/entrypoint.tests.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_weather_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/tests/test_weather_service.py -------------------------------------------------------------------------------- /weather_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaropaco/py-weather-micro-service/HEAD/weather_service.py --------------------------------------------------------------------------------