├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yaml ├── dialogflow-agent.zip ├── language_list.py ├── main.py ├── requirements.txt └── translate_response.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/app.yaml -------------------------------------------------------------------------------- /dialogflow-agent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/dialogflow-agent.zip -------------------------------------------------------------------------------- /language_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/language_list.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.12.2 2 | google-api-python-client==1.6.6 3 | gunicorn==19.7.1 -------------------------------------------------------------------------------- /translate_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-translate-python/HEAD/translate_response.py --------------------------------------------------------------------------------