diff --git a/README.rst b/README.rst index 2d09f147..1895a62f 100644 --- a/README.rst +++ b/README.rst @@ -82,4 +82,25 @@ Windows pip install virtualenv virtualenv \Scripts\activate - \Scripts\pip.exe install google-cloud-translate \ No newline at end of file + \Scripts\pip.exe install google-cloud-translate + +Samples +----------- + +The `samples folder`_ contains all of the Cloud Translation API code snippets +found in `its documentation`_ as well as complete sample apps: + +- `Mini Google Translate "MVP"`_ app + + - Shows how to use the API in a Python/Flask web app + - Deployable locally or any on-prem or cloud host supporting Flask apps + - Also deployable to `Google Cloud serverless hosting platforms`_ (`App Engine`_, `Cloud Functions`_, or `Cloud Run`_) with only minor configuration changes + +.. _samples folder: samples +.. _its documentation: https://cloud.google.com/translate/docs +.. _Mini Google Translate "MVP": https://github.com/googlecodelabs/cloud-nebulous-serverless-python +.. _Google Cloud serverless hosting platforms: https://cloud.google.com/serverless#serverless-products +.. _App Engine: https://cloud.google.com/appengine +.. _Cloud Functions: https://cloud.google.com/functions +.. _Cloud Run: https://cloud.google.com/run + diff --git a/samples/cloud-nebulous-serverless-python/README.md b/samples/cloud-nebulous-serverless-python/README.md new file mode 100644 index 00000000..9dfab667 --- /dev/null +++ b/samples/cloud-nebulous-serverless-python/README.md @@ -0,0 +1 @@ +This sample can be found at .