├── .gitignore ├── Chapter01 ├── handler.py ├── hello_world_package.zip ├── lambda_function.py └── lambda_output.txt ├── Chapter02 ├── hello.py └── zappa_settings.json ├── Chapter03 ├── README.md ├── app │ ├── __init__.py │ ├── auth │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ └── views.py │ ├── config │ │ ├── __init__.py │ │ ├── config.py │ │ └── models.py │ ├── static │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── jquery │ │ │ └── jquery-3.3.1.min.js │ │ ├── popper │ │ │ └── popper.min.js │ │ └── todo │ │ │ └── list.js │ ├── templates │ │ ├── auth │ │ │ ├── login.html │ │ │ └── signup.html │ │ ├── base.html │ │ ├── navbar.html │ │ └── todo │ │ │ └── list.html │ ├── todo-dev.db │ ├── todo-prod.db │ └── todo │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ └── views.py ├── hello_world.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 0a0e3e339ec9_.py │ │ └── 76baf4c27890_.py ├── requirements.txt ├── run.py └── zappa_settings.json ├── Chapter04 ├── app │ ├── __init__.py │ ├── auth │ │ ├── __init__.py │ │ ├── models.py │ │ └── resources.py │ ├── config │ │ ├── __init__.py │ │ ├── config.py │ │ └── models.py │ ├── todo-dev.db │ ├── todo-prod.db │ └── todo │ │ ├── __init__.py │ │ ├── models.py │ │ └── resources.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── 8035858a2b19_.py ├── requirements.txt ├── run.py └── zappa_settings.json ├── Chapter05 └── imageGalleryProject │ ├── .gitignore │ ├── Pipfile │ ├── Pipfile.lock │ ├── db.sqlite3 │ ├── gallery │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180317_2245.py │ │ ├── 0003_auto_20180317_2246.py │ │ ├── 0004_auto_20180328_0950.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── utils.py │ └── views.py │ ├── imageGalleryProject │ ├── __init__.py │ ├── dev_settings.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── zappa_settings.json ├── Chapter06 └── imageGalleryProject │ ├── .gitignore │ ├── Pipfile │ ├── db.sqlite3 │ ├── gallery │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180317_2245.py │ │ ├── 0003_auto_20180317_2246.py │ │ ├── 0004_auto_20180328_0950.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py │ ├── imageGalleryProject │ ├── __init__.py │ ├── dev_settings.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── zappa_settings.json ├── Chapter07 ├── Pipfile ├── Pipfile.lock ├── __init__.py ├── chapter-7-dev-template-1527211920.json ├── mashape.py ├── models.py ├── quote_database.db ├── resources.py ├── schedulers.py └── zappa_settings.json ├── Chapter08 ├── Pipfile ├── Pipfile.lock ├── __init__.py ├── mashape.py ├── models.py ├── quote_database.db ├── resources.py ├── schedulers.py └── zappa_settings.json ├── Chapter09 ├── Pipfile ├── __init__.py ├── async.py ├── mashape.py ├── models.py ├── notify.py ├── quote_database.db ├── resources.py ├── schedulers.py ├── sns.py └── zappa_settings.json ├── Chapter11 ├── Pipfile ├── Pipfile.lock ├── aws_sign_request_test.py ├── mashape.py ├── resources.py └── zappa_settings.json ├── Chapter12 ├── Dockerfile ├── Pipfile ├── Pipfile.lock ├── parser.py ├── resources.py ├── sample-doc-file.doc ├── usr │ ├── bin │ │ ├── catdoc │ │ ├── catppt │ │ ├── wordview │ │ └── xls2csv │ └── share │ │ └── catdoc │ │ ├── 8859-1.txt │ │ ├── 8859-10.txt │ │ ├── 8859-11.txt │ │ ├── 8859-13.txt │ │ ├── 8859-14.txt │ │ ├── 8859-15.txt │ │ ├── 8859-2.txt │ │ ├── 8859-3.txt │ │ ├── 8859-4.txt │ │ ├── 8859-5.txt │ │ ├── 8859-6.txt │ │ ├── 8859-7.txt │ │ ├── 8859-8.txt │ │ ├── 8859-9.txt │ │ ├── ascii.replchars │ │ ├── ascii.specchars │ │ ├── cp1250.txt │ │ ├── cp1251.txt │ │ ├── cp1252.txt │ │ ├── cp1253.txt │ │ ├── cp1254.txt │ │ ├── cp1255.txt │ │ ├── cp1256.txt │ │ ├── cp1257.txt │ │ ├── cp1258.txt │ │ ├── cp437.txt │ │ ├── cp850.txt │ │ ├── cp852.txt │ │ ├── cp855.txt │ │ ├── cp857.txt │ │ ├── cp860.txt │ │ ├── cp861.txt │ │ ├── cp862.txt │ │ ├── cp863.txt │ │ ├── cp864.txt │ │ ├── cp865.txt │ │ ├── cp866.txt │ │ ├── cp869.txt │ │ ├── cp874.txt │ │ ├── koi8-r.txt │ │ ├── koi8-u.txt │ │ ├── mac-arabic.txt │ │ ├── mac-centeuro.txt │ │ ├── mac-cyrillic.txt │ │ ├── mac-greek.txt │ │ ├── mac-hebrew.txt │ │ ├── mac-roman.txt │ │ ├── tex.replchars │ │ ├── tex.specchars │ │ └── us-ascii.txt └── zappa_settings.json ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter01/handler.py -------------------------------------------------------------------------------- /Chapter01/hello_world_package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter01/hello_world_package.zip -------------------------------------------------------------------------------- /Chapter01/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter01/lambda_function.py -------------------------------------------------------------------------------- /Chapter01/lambda_output.txt: -------------------------------------------------------------------------------- 1 | "Hello World ! Response by lambda function." -------------------------------------------------------------------------------- /Chapter02/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter02/hello.py -------------------------------------------------------------------------------- /Chapter02/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter02/zappa_settings.json -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter03/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/__init__.py -------------------------------------------------------------------------------- /Chapter03/app/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/auth/__init__.py -------------------------------------------------------------------------------- /Chapter03/app/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/auth/forms.py -------------------------------------------------------------------------------- /Chapter03/app/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/auth/models.py -------------------------------------------------------------------------------- /Chapter03/app/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/auth/views.py -------------------------------------------------------------------------------- /Chapter03/app/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/config/__init__.py -------------------------------------------------------------------------------- /Chapter03/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/config/config.py -------------------------------------------------------------------------------- /Chapter03/app/config/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/config/models.py -------------------------------------------------------------------------------- /Chapter03/app/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter03/app/static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter03/app/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter03/app/static/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/static/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Chapter03/app/static/jquery/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/static/jquery/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /Chapter03/app/static/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/static/popper/popper.min.js -------------------------------------------------------------------------------- /Chapter03/app/static/todo/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/static/todo/list.js -------------------------------------------------------------------------------- /Chapter03/app/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/templates/auth/login.html -------------------------------------------------------------------------------- /Chapter03/app/templates/auth/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/templates/auth/signup.html -------------------------------------------------------------------------------- /Chapter03/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/templates/base.html -------------------------------------------------------------------------------- /Chapter03/app/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/templates/navbar.html -------------------------------------------------------------------------------- /Chapter03/app/templates/todo/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/templates/todo/list.html -------------------------------------------------------------------------------- /Chapter03/app/todo-dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/todo-dev.db -------------------------------------------------------------------------------- /Chapter03/app/todo-prod.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/app/todo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/todo/__init__.py -------------------------------------------------------------------------------- /Chapter03/app/todo/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/todo/forms.py -------------------------------------------------------------------------------- /Chapter03/app/todo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/todo/models.py -------------------------------------------------------------------------------- /Chapter03/app/todo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/app/todo/views.py -------------------------------------------------------------------------------- /Chapter03/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/hello_world.py -------------------------------------------------------------------------------- /Chapter03/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Chapter03/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/migrations/alembic.ini -------------------------------------------------------------------------------- /Chapter03/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/migrations/env.py -------------------------------------------------------------------------------- /Chapter03/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/migrations/script.py.mako -------------------------------------------------------------------------------- /Chapter03/migrations/versions/0a0e3e339ec9_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/migrations/versions/0a0e3e339ec9_.py -------------------------------------------------------------------------------- /Chapter03/migrations/versions/76baf4c27890_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/migrations/versions/76baf4c27890_.py -------------------------------------------------------------------------------- /Chapter03/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/requirements.txt -------------------------------------------------------------------------------- /Chapter03/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/run.py -------------------------------------------------------------------------------- /Chapter03/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter03/zappa_settings.json -------------------------------------------------------------------------------- /Chapter04/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/__init__.py -------------------------------------------------------------------------------- /Chapter04/app/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/auth/__init__.py -------------------------------------------------------------------------------- /Chapter04/app/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/auth/models.py -------------------------------------------------------------------------------- /Chapter04/app/auth/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/auth/resources.py -------------------------------------------------------------------------------- /Chapter04/app/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/config/__init__.py -------------------------------------------------------------------------------- /Chapter04/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/config/config.py -------------------------------------------------------------------------------- /Chapter04/app/config/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/config/models.py -------------------------------------------------------------------------------- /Chapter04/app/todo-dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/todo-dev.db -------------------------------------------------------------------------------- /Chapter04/app/todo-prod.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/app/todo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/todo/__init__.py -------------------------------------------------------------------------------- /Chapter04/app/todo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/todo/models.py -------------------------------------------------------------------------------- /Chapter04/app/todo/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/app/todo/resources.py -------------------------------------------------------------------------------- /Chapter04/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Chapter04/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/migrations/alembic.ini -------------------------------------------------------------------------------- /Chapter04/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/migrations/env.py -------------------------------------------------------------------------------- /Chapter04/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/migrations/script.py.mako -------------------------------------------------------------------------------- /Chapter04/migrations/versions/8035858a2b19_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/migrations/versions/8035858a2b19_.py -------------------------------------------------------------------------------- /Chapter04/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/requirements.txt -------------------------------------------------------------------------------- /Chapter04/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/run.py -------------------------------------------------------------------------------- /Chapter04/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter04/zappa_settings.json -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/.gitignore -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/Pipfile -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/Pipfile.lock -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/db.sqlite3 -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/admin.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/apps.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/migrations/0001_initial.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/migrations/0002_auto_20180317_2245.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/migrations/0002_auto_20180317_2245.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/migrations/0003_auto_20180317_2246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/migrations/0003_auto_20180317_2246.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/migrations/0004_auto_20180328_0950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/migrations/0004_auto_20180328_0950.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/models.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/tests.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/gallery/utils.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/gallery/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/imageGalleryProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/imageGalleryProject/dev_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/imageGalleryProject/dev_settings.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/imageGalleryProject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/imageGalleryProject/settings.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/imageGalleryProject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/imageGalleryProject/urls.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/imageGalleryProject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/imageGalleryProject/wsgi.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/manage.py -------------------------------------------------------------------------------- /Chapter05/imageGalleryProject/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter05/imageGalleryProject/zappa_settings.json -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/.gitignore -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/Pipfile -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/db.sqlite3 -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/admin.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/apps.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/migrations/0001_initial.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/migrations/0002_auto_20180317_2245.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/migrations/0002_auto_20180317_2245.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/migrations/0003_auto_20180317_2246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/migrations/0003_auto_20180317_2246.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/migrations/0004_auto_20180328_0950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/migrations/0004_auto_20180328_0950.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/models.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/serializers.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/tests.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/urls.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/utils.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/gallery/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/gallery/views.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/imageGalleryProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/imageGalleryProject/dev_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/imageGalleryProject/dev_settings.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/imageGalleryProject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/imageGalleryProject/settings.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/imageGalleryProject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/imageGalleryProject/urls.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/imageGalleryProject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/imageGalleryProject/wsgi.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/manage.py -------------------------------------------------------------------------------- /Chapter06/imageGalleryProject/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter06/imageGalleryProject/zappa_settings.json -------------------------------------------------------------------------------- /Chapter07/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/Pipfile -------------------------------------------------------------------------------- /Chapter07/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/Pipfile.lock -------------------------------------------------------------------------------- /Chapter07/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/chapter-7-dev-template-1527211920.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/chapter-7-dev-template-1527211920.json -------------------------------------------------------------------------------- /Chapter07/mashape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/mashape.py -------------------------------------------------------------------------------- /Chapter07/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/models.py -------------------------------------------------------------------------------- /Chapter07/quote_database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/quote_database.db -------------------------------------------------------------------------------- /Chapter07/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/resources.py -------------------------------------------------------------------------------- /Chapter07/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/schedulers.py -------------------------------------------------------------------------------- /Chapter07/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter07/zappa_settings.json -------------------------------------------------------------------------------- /Chapter08/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/Pipfile -------------------------------------------------------------------------------- /Chapter08/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/Pipfile.lock -------------------------------------------------------------------------------- /Chapter08/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/mashape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/mashape.py -------------------------------------------------------------------------------- /Chapter08/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/models.py -------------------------------------------------------------------------------- /Chapter08/quote_database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/quote_database.db -------------------------------------------------------------------------------- /Chapter08/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/resources.py -------------------------------------------------------------------------------- /Chapter08/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/schedulers.py -------------------------------------------------------------------------------- /Chapter08/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter08/zappa_settings.json -------------------------------------------------------------------------------- /Chapter09/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/Pipfile -------------------------------------------------------------------------------- /Chapter09/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/async.py -------------------------------------------------------------------------------- /Chapter09/mashape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/mashape.py -------------------------------------------------------------------------------- /Chapter09/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/models.py -------------------------------------------------------------------------------- /Chapter09/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/notify.py -------------------------------------------------------------------------------- /Chapter09/quote_database.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/resources.py -------------------------------------------------------------------------------- /Chapter09/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/schedulers.py -------------------------------------------------------------------------------- /Chapter09/sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/sns.py -------------------------------------------------------------------------------- /Chapter09/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter09/zappa_settings.json -------------------------------------------------------------------------------- /Chapter11/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter11/Pipfile -------------------------------------------------------------------------------- /Chapter11/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter11/Pipfile.lock -------------------------------------------------------------------------------- /Chapter11/aws_sign_request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter11/aws_sign_request_test.py -------------------------------------------------------------------------------- /Chapter11/mashape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter11/mashape.py -------------------------------------------------------------------------------- /Chapter11/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter11/resources.py -------------------------------------------------------------------------------- /Chapter11/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter11/zappa_settings.json -------------------------------------------------------------------------------- /Chapter12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/Dockerfile -------------------------------------------------------------------------------- /Chapter12/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/Pipfile -------------------------------------------------------------------------------- /Chapter12/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/Pipfile.lock -------------------------------------------------------------------------------- /Chapter12/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/parser.py -------------------------------------------------------------------------------- /Chapter12/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/resources.py -------------------------------------------------------------------------------- /Chapter12/sample-doc-file.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/sample-doc-file.doc -------------------------------------------------------------------------------- /Chapter12/usr/bin/catdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/bin/catdoc -------------------------------------------------------------------------------- /Chapter12/usr/bin/catppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/bin/catppt -------------------------------------------------------------------------------- /Chapter12/usr/bin/wordview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/bin/wordview -------------------------------------------------------------------------------- /Chapter12/usr/bin/xls2csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/bin/xls2csv -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-1.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-10.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-11.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-13.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-14.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-15.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-2.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-3.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-4.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-5.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-6.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-7.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-8.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/8859-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/8859-9.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/ascii.replchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/ascii.replchars -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/ascii.specchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/ascii.specchars -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1250.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1251.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1252.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1253.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1254.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1255.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1256.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1257.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1257.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp1258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp1258.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp437.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp850.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp850.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp852.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp852.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp855.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp855.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp857.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp857.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp860.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp860.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp861.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp861.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp862.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp862.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp863.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp863.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp864.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp864.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp865.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp865.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp866.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp866.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp869.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp869.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/cp874.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/cp874.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/koi8-r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/koi8-r.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/koi8-u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/koi8-u.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/mac-arabic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/mac-arabic.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/mac-centeuro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/mac-centeuro.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/mac-cyrillic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/mac-cyrillic.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/mac-greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/mac-greek.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/mac-hebrew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/mac-hebrew.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/mac-roman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/mac-roman.txt -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/tex.replchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/tex.replchars -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/tex.specchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/tex.specchars -------------------------------------------------------------------------------- /Chapter12/usr/share/catdoc/us-ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/usr/share/catdoc/us-ascii.txt -------------------------------------------------------------------------------- /Chapter12/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/Chapter12/zappa_settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa/HEAD/README.md --------------------------------------------------------------------------------