├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yaml ├── cron.yaml ├── favicon.ico ├── main.py ├── requirements.txt └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.pyc 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/app.yaml -------------------------------------------------------------------------------- /cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/cron.yaml -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/favicon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | google-api-python-client 2 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/compute-appengine-timeout-python/HEAD/templates/index.html --------------------------------------------------------------------------------