├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── restApi ├── continent │ ├── event.json │ ├── handler.py │ ├── s-function.json │ └── s-templates.json ├── lib │ ├── __init__.py │ ├── continent.py │ ├── multi.py │ └── single.py ├── multi │ ├── create │ │ ├── event.json │ │ ├── handler.py │ │ └── s-function.json │ └── show │ │ ├── event.json │ │ ├── handler.py │ │ ├── s-function.json │ │ └── s-templates.json ├── requirements.txt ├── single │ ├── event.json │ ├── handler.py │ ├── s-function.json │ └── s-templates.json └── vendored │ └── .gitignore ├── s-project.json ├── s-resources-cf.json └── s-templates.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/package.json -------------------------------------------------------------------------------- /restApi/continent/event.json: -------------------------------------------------------------------------------- 1 | {"country": "Italy"} -------------------------------------------------------------------------------- /restApi/continent/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/continent/handler.py -------------------------------------------------------------------------------- /restApi/continent/s-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/continent/s-function.json -------------------------------------------------------------------------------- /restApi/continent/s-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/continent/s-templates.json -------------------------------------------------------------------------------- /restApi/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/lib/__init__.py -------------------------------------------------------------------------------- /restApi/lib/continent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/lib/continent.py -------------------------------------------------------------------------------- /restApi/lib/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/lib/multi.py -------------------------------------------------------------------------------- /restApi/lib/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/lib/single.py -------------------------------------------------------------------------------- /restApi/multi/create/event.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /restApi/multi/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/multi/create/handler.py -------------------------------------------------------------------------------- /restApi/multi/create/s-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/multi/create/s-function.json -------------------------------------------------------------------------------- /restApi/multi/show/event.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /restApi/multi/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/multi/show/handler.py -------------------------------------------------------------------------------- /restApi/multi/show/s-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/multi/show/s-function.json -------------------------------------------------------------------------------- /restApi/multi/show/s-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/multi/show/s-templates.json -------------------------------------------------------------------------------- /restApi/requirements.txt: -------------------------------------------------------------------------------- 1 | countrycode -------------------------------------------------------------------------------- /restApi/single/event.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /restApi/single/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/single/handler.py -------------------------------------------------------------------------------- /restApi/single/s-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/single/s-function.json -------------------------------------------------------------------------------- /restApi/single/s-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/restApi/single/s-templates.json -------------------------------------------------------------------------------- /restApi/vendored/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /s-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/s-project.json -------------------------------------------------------------------------------- /s-resources-cf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/s-resources-cf.json -------------------------------------------------------------------------------- /s-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcasalboni/serverless-starter-python/HEAD/s-templates.json --------------------------------------------------------------------------------