gitextract_8gh5n9v8/ ├── .changes/ │ ├── 0.1.0.json │ ├── 0.10.0.json │ ├── 0.10.1.json │ ├── 0.2.0.json │ ├── 0.3.0.json │ ├── 0.4.0.json │ ├── 0.5.0.json │ ├── 0.5.1.json │ ├── 0.6.0.json │ ├── 0.7.0.json │ ├── 0.8.0.json │ ├── 0.8.1.json │ ├── 0.8.2.json │ ├── 0.9.0.json │ ├── 1.0.0.json │ ├── 1.0.0b1.json │ ├── 1.0.0b2.json │ ├── 1.0.1.json │ ├── 1.0.2.json │ ├── 1.0.3.json │ ├── 1.0.4.json │ ├── 1.1.0.json │ ├── 1.1.1.json │ ├── 1.10.0.json │ ├── 1.11.0.json │ ├── 1.11.1.json │ ├── 1.12.0.json │ ├── 1.13.0.json │ ├── 1.13.1.json │ ├── 1.14.0.json │ ├── 1.14.1.json │ ├── 1.15.0.json │ ├── 1.15.1.json │ ├── 1.16.0.json │ ├── 1.17.0.json │ ├── 1.18.0.json │ ├── 1.18.1.json │ ├── 1.19.0.json │ ├── 1.2.0.json │ ├── 1.2.1.json │ ├── 1.2.2.json │ ├── 1.2.3.json │ ├── 1.20.0.json │ ├── 1.20.1.json │ ├── 1.21.0.json │ ├── 1.21.1.json │ ├── 1.21.2.json │ ├── 1.21.3.json │ ├── 1.21.4.json │ ├── 1.21.5.json │ ├── 1.21.6.json │ ├── 1.21.7.json │ ├── 1.21.8.json │ ├── 1.21.9.json │ ├── 1.22.0.json │ ├── 1.22.1.json │ ├── 1.22.2.json │ ├── 1.22.3.json │ ├── 1.22.4.json │ ├── 1.23.0.json │ ├── 1.24.0.json │ ├── 1.24.1.json │ ├── 1.24.2.json │ ├── 1.25.0.json │ ├── 1.26.0.json │ ├── 1.26.1.json │ ├── 1.26.2.json │ ├── 1.26.3.json │ ├── 1.26.4.json │ ├── 1.26.5.json │ ├── 1.26.6.json │ ├── 1.27.0.json │ ├── 1.27.1.json │ ├── 1.27.2.json │ ├── 1.27.3.json │ ├── 1.28.0.json │ ├── 1.29.0.json │ ├── 1.3.0.json │ ├── 1.30.0.json │ ├── 1.31.0.json │ ├── 1.31.1.json │ ├── 1.31.2.json │ ├── 1.31.3.json │ ├── 1.31.4.json │ ├── 1.32.0.json │ ├── 1.4.0.json │ ├── 1.5.0.json │ ├── 1.6.0.json │ ├── 1.6.1.json │ ├── 1.6.2.json │ ├── 1.7.0.json │ ├── 1.8.0.json │ ├── 1.9.0.json │ ├── 1.9.1.json │ └── templates/ │ └── changelog ├── .coveragerc ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── run-tests.yml │ └── stale-issue.yml ├── .gitignore ├── .pylintrc ├── .python-version ├── CHANGELOG.md ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README.rst ├── chalice/ │ ├── __init__.py │ ├── analyzer.py │ ├── api/ │ │ └── __init__.py │ ├── app.py │ ├── awsclient.py │ ├── cdk/ │ │ ├── __init__.py │ │ └── construct.py │ ├── cli/ │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── filewatch/ │ │ │ ├── __init__.py │ │ │ ├── eventbased.py │ │ │ └── stat.py │ │ ├── newproj.py │ │ └── reloader.py │ ├── compat.py │ ├── config.py │ ├── constants.py │ ├── deploy/ │ │ ├── __init__.py │ │ ├── appgraph.py │ │ ├── deployer.py │ │ ├── executor.py │ │ ├── models.py │ │ ├── packager.py │ │ ├── planner.py │ │ ├── swagger.py │ │ ├── sweeper.py │ │ └── validate.py │ ├── invoke.py │ ├── local.py │ ├── logs.py │ ├── package.py │ ├── pipeline.py │ ├── policies-extra.json │ ├── policies.json │ ├── policy.py │ ├── py.typed │ ├── templates/ │ │ ├── 0000-rest-api/ │ │ │ ├── .chalice/ │ │ │ │ └── config.json │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── chalicelib/ │ │ │ │ └── __init__.py │ │ │ ├── metadata.json │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements.txt │ │ │ └── tests/ │ │ │ ├── __init__.py │ │ │ └── test_app.py │ │ ├── 0002-s3-event-handler/ │ │ │ ├── .chalice/ │ │ │ │ └── config.json │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── chalicelib/ │ │ │ │ └── __init__.py │ │ │ ├── metadata.json │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements.txt │ │ │ └── tests/ │ │ │ ├── __init__.py │ │ │ └── test_app.py │ │ ├── 0007-lambda-only/ │ │ │ ├── .chalice/ │ │ │ │ └── config.json │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── chalicelib/ │ │ │ │ └── __init__.py │ │ │ ├── metadata.json │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements.txt │ │ │ └── tests/ │ │ │ ├── __init__.py │ │ │ └── test_app.py │ │ ├── 0009-legacy/ │ │ │ ├── .chalice/ │ │ │ │ └── config.json │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── metadata.json │ │ │ └── requirements.txt │ │ └── 6001-cdk-ddb/ │ │ ├── README.rst │ │ ├── infrastructure/ │ │ │ ├── app.py │ │ │ ├── cdk.json │ │ │ ├── requirements.txt │ │ │ └── stacks/ │ │ │ ├── __init__.py │ │ │ └── chaliceapp.py │ │ ├── metadata.json │ │ ├── requirements.txt │ │ └── runtime/ │ │ ├── .chalice/ │ │ │ └── config.json │ │ ├── .gitignore │ │ ├── app.py │ │ └── requirements.txt │ ├── test.py │ ├── utils.py │ └── vendored/ │ ├── __init__.py │ └── botocore/ │ ├── __init__.py │ └── regions.py ├── docs/ │ ├── Makefile │ └── source/ │ ├── _static/ │ │ ├── custom.css │ │ └── fonts/ │ │ └── open-sans/ │ │ └── stylesheet.css │ ├── _templates/ │ │ └── layout.html │ ├── api.rst │ ├── chalicedocs.py │ ├── conf.py │ ├── faq.rst │ ├── index.rst │ ├── main.rst │ ├── quickstart.rst │ ├── samples/ │ │ ├── index.rst │ │ ├── media-query/ │ │ │ ├── code/ │ │ │ │ ├── .chalice/ │ │ │ │ │ ├── config.json │ │ │ │ │ └── policy-dev.json │ │ │ │ ├── app.py │ │ │ │ ├── chalicelib/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── db.py │ │ │ │ │ └── rekognition.py │ │ │ │ ├── recordresources.py │ │ │ │ ├── requirements.txt │ │ │ │ └── resources.json │ │ │ └── index.rst │ │ └── todo-app/ │ │ ├── code/ │ │ │ ├── .chalice/ │ │ │ │ ├── config.json │ │ │ │ └── policy-dev.json │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── chalicelib/ │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ └── db.py │ │ │ ├── create-resources.py │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements.txt │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ └── test_db.py │ │ │ └── users.py │ │ └── index.rst │ ├── theme/ │ │ └── smithy/ │ │ ├── globaltoc.html │ │ ├── landing.html │ │ ├── layout.html │ │ ├── static/ │ │ │ ├── asciinema-player.css │ │ │ ├── asciinema-player.js │ │ │ ├── bootstrap-reboot.css │ │ │ ├── casts/ │ │ │ │ ├── chalice-quickstart-old.cast │ │ │ │ └── chalice-quickstart.cast │ │ │ ├── custom-tabs.css │ │ │ └── default.css_t │ │ └── theme.conf │ ├── topics/ │ │ ├── authorizers.rst │ │ ├── blueprints.rst │ │ ├── cd.rst │ │ ├── cfn.rst │ │ ├── configfile.rst │ │ ├── domainname.rst │ │ ├── events.rst │ │ ├── experimental.rst │ │ ├── index.rst │ │ ├── logging.rst │ │ ├── middleware.rst │ │ ├── multifile.rst │ │ ├── packaging.rst │ │ ├── purelambda.rst │ │ ├── pyversion.rst │ │ ├── routing.rst │ │ ├── sdks.rst │ │ ├── stages.rst │ │ ├── testing.rst │ │ ├── tf.rst │ │ ├── views.rst │ │ └── websockets.rst │ ├── tutorials/ │ │ ├── basicrestapi.rst │ │ ├── cdk.rst │ │ ├── customdomain.rst │ │ ├── events.rst │ │ ├── index.rst │ │ ├── wschat.rst │ │ └── wsecho.rst │ └── upgrading.rst ├── requirements-dev.in ├── requirements-dev.txt ├── requirements-test.in ├── requirements-test.txt ├── scripts/ │ ├── gh-page-docs │ └── release ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── aws/ │ ├── __init__.py │ ├── conftest.py │ ├── test_features.py │ ├── test_websockets.py │ ├── testapp/ │ │ ├── .chalice/ │ │ │ └── config.json │ │ ├── app-redeploy.py │ │ ├── app.py │ │ ├── chalicelib/ │ │ │ └── __init__.py │ │ └── requirements.txt │ └── testwebsocketapp/ │ ├── .chalice/ │ │ └── config.json │ ├── .gitignore │ ├── app-redeploy.py │ ├── app.py │ └── requirements.txt ├── conftest.py ├── functional/ │ ├── __init__.py │ ├── api/ │ │ ├── __init__.py │ │ └── test_package.py │ ├── basicapp/ │ │ ├── .chalice/ │ │ │ └── config.json │ │ ├── .gitignore │ │ ├── app.py │ │ └── requirements.txt │ ├── cdk/ │ │ ├── __init__.py │ │ └── test_construct.py │ ├── cli/ │ │ ├── __init__.py │ │ ├── test_cli.py │ │ ├── test_factory.py │ │ └── test_reloader.py │ ├── conftest.py │ ├── envapp/ │ │ ├── .chalice/ │ │ │ └── config.json │ │ ├── .gitignore │ │ ├── app.py │ │ └── requirements.txt │ ├── test_awsclient.py │ ├── test_deployer.py │ ├── test_local.py │ ├── test_package.py │ └── test_utils.py ├── integration/ │ ├── __init__.py │ ├── conftest.py │ ├── test_cli.py │ └── test_package.py ├── plugins/ │ ├── codelinter.py │ └── testlinter.py └── unit/ ├── __init__.py ├── cli/ │ ├── __init__.py │ ├── filewatch/ │ │ ├── test_eventbased.py │ │ └── test_stat.py │ ├── test_cli.py │ └── test_newproj.py ├── conftest.py ├── deploy/ │ ├── __init__.py │ ├── test_appgraph.py │ ├── test_deployer.py │ ├── test_executor.py │ ├── test_models.py │ ├── test_packager.py │ ├── test_planner.py │ ├── test_swagger.py │ └── test_validate.py ├── test_analyzer.py ├── test_app.py ├── test_awsclient.py ├── test_config.py ├── test_invoke.py ├── test_local.py ├── test_logs.py ├── test_package.py ├── test_pipeline.py ├── test_policy.py ├── test_test.py ├── test_utils.py └── vendored/ ├── __init__.py └── botocore/ ├── __init__.py └── test_regions.py