├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yaml ├── config.py ├── dialogflow-agent.zip ├── forecast.py ├── main.py ├── requirements.txt ├── weather_entities.py └── weather_responses.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/app.yaml -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/config.py -------------------------------------------------------------------------------- /dialogflow-agent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/dialogflow-agent.zip -------------------------------------------------------------------------------- /forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/forecast.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.12.2 2 | requests==2.18.4 3 | gunicorn==19.7.1 4 | -------------------------------------------------------------------------------- /weather_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/weather_entities.py -------------------------------------------------------------------------------- /weather_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-weather-python/HEAD/weather_responses.py --------------------------------------------------------------------------------