├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── images ├── arch-diagram.png ├── module-1 │ ├── architecture-module-1.png │ ├── bucket-policy-image.png │ ├── cloud9-configure-env.png │ ├── cloud9-explorer.png │ ├── cloud9-home.png │ ├── cloud9-name-ide.png │ ├── cloud9-review.png │ ├── cloud9-service.png │ ├── cloud9-welcome.png │ ├── mysfits-welcome.png │ └── replace-bucket-name.png ├── module-2 │ ├── address-bar.png │ ├── after-replace.png │ ├── architecture-module-2.png │ ├── architecture-module-2b.png │ ├── before-replace.png │ ├── cfn-complete.png │ └── preview-menu.png ├── module-3 │ └── architecture-module-3.png ├── module-4 │ ├── architecture-module-4.png │ └── before-replace.png ├── module-5 │ ├── architecture-module-5.png │ └── replace-api-endpoint.png ├── module-6 │ ├── api-x-ray.png │ ├── confirm-sns.png │ ├── exception.png │ ├── lambda-only-x-ray.png │ ├── services-x-ray.png │ ├── view-traces.png │ ├── x-ray-arch-diagram.png │ └── x-ray-errors.png └── module-7 │ ├── jupyter-home.png │ ├── recommendation-button-ss.png │ ├── sagemaker-architecture.png │ └── sagemaker-notebook-instances.png ├── module-1 ├── README.md ├── cdk │ ├── .gitignore │ ├── .npmignore │ ├── bin │ │ └── cdk.ts │ └── lib │ │ └── web-application-stack.ts └── web │ └── index.html ├── module-2 ├── README.md ├── app │ ├── Dockerfile │ ├── buildspec.yml │ └── service │ │ ├── mysfits-response.json │ │ ├── mythicalMysfitsService.py │ │ └── requirements.txt ├── cdk │ ├── .gitignore │ ├── .npmignore │ ├── bin │ │ └── cdk.ts │ └── lib │ │ ├── cicd-stack.ts │ │ ├── ecr-stack.ts │ │ ├── ecs-stack.ts │ │ ├── network-stack.ts │ │ └── web-application-stack.ts └── web │ └── index.html ├── module-3 ├── README.md ├── app │ ├── Dockerfile │ ├── buildspec.yml │ └── service │ │ ├── mysfitsTableClient.py │ │ ├── mythicalMysfitsService.py │ │ └── requirements.txt ├── cdk │ ├── .gitignore │ ├── .npmignore │ ├── bin │ │ └── cdk.ts │ └── lib │ │ ├── cicd-stack.ts │ │ ├── dynamodb-stack.ts │ │ ├── ecr-stack.ts │ │ ├── ecs-stack.ts │ │ ├── network-stack.ts │ │ └── web-application-stack.ts ├── data │ └── populate-dynamodb.json └── web │ └── index.html ├── module-4 ├── README.md ├── api │ └── api-swagger.json ├── app │ ├── Dockerfile │ ├── buildspec.yml │ └── service │ │ ├── mysfitsTableClient.py │ │ ├── mythicalMysfitsService.py │ │ └── requirements.txt ├── cdk │ ├── .gitignore │ ├── .npmignore │ ├── bin │ │ └── cdk.ts │ └── lib │ │ ├── apigateway-stack.ts │ │ ├── cicd-stack.ts │ │ ├── cognito-stack.ts │ │ ├── dynamodb-stack.ts │ │ ├── ecr-stack.ts │ │ ├── ecs-stack.ts │ │ ├── network-stack.ts │ │ └── web-application-stack.ts └── web │ ├── confirm.html │ ├── index.html │ ├── js │ ├── amazon-cognito-identity.min.js │ ├── aws-cognito-sdk.min.js │ └── aws-sdk-2.246.1.min.js │ └── register.html ├── module-5 ├── README.md ├── app │ ├── Dockerfile │ ├── buildspec.yml │ ├── service │ │ ├── mysfitsTableClient.py │ │ ├── mythicalMysfitsService.py │ │ └── requirements.txt │ └── streaming │ │ └── streamProcessor.py ├── cdk │ ├── .gitignore │ ├── .npmignore │ ├── bin │ │ └── cdk.ts │ └── lib │ │ ├── apigateway-stack.ts │ │ ├── cicd-stack.ts │ │ ├── cognito-stack.ts │ │ ├── dynamodb-stack.ts │ │ ├── ecr-stack.ts │ │ ├── ecs-stack.ts │ │ ├── kinesis-firehose-stack.ts │ │ ├── network-stack.ts │ │ └── web-application-stack.ts └── web │ └── index.html ├── module-6 ├── README.md ├── app │ ├── PostQuestionsService │ │ ├── __pycache__ │ │ │ └── six.cpython-36.pyc │ │ ├── aws_xray_sdk-2.1.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── aws_xray_sdk │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── async_context.cpython-36.pyc │ │ │ │ │ ├── async_recorder.cpython-36.pyc │ │ │ │ │ ├── context.cpython-36.pyc │ │ │ │ │ ├── daemon_config.cpython-36.pyc │ │ │ │ │ ├── lambda_launcher.cpython-36.pyc │ │ │ │ │ ├── patcher.cpython-36.pyc │ │ │ │ │ └── recorder.cpython-36.pyc │ │ │ │ ├── async_context.py │ │ │ │ ├── async_recorder.py │ │ │ │ ├── context.py │ │ │ │ ├── daemon_config.py │ │ │ │ ├── emitters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── udp_emitter.cpython-36.pyc │ │ │ │ │ └── udp_emitter.py │ │ │ │ ├── exceptions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── exceptions.cpython-36.pyc │ │ │ │ │ └── exceptions.py │ │ │ │ ├── lambda_launcher.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── default_dynamic_naming.cpython-36.pyc │ │ │ │ │ │ ├── dummy_entities.cpython-36.pyc │ │ │ │ │ │ ├── entity.cpython-36.pyc │ │ │ │ │ │ ├── facade_segment.cpython-36.pyc │ │ │ │ │ │ ├── http.cpython-36.pyc │ │ │ │ │ │ ├── segment.cpython-36.pyc │ │ │ │ │ │ ├── subsegment.cpython-36.pyc │ │ │ │ │ │ ├── throwable.cpython-36.pyc │ │ │ │ │ │ ├── trace_header.cpython-36.pyc │ │ │ │ │ │ └── traceid.cpython-36.pyc │ │ │ │ │ ├── default_dynamic_naming.py │ │ │ │ │ ├── dummy_entities.py │ │ │ │ │ ├── entity.py │ │ │ │ │ ├── facade_segment.py │ │ │ │ │ ├── http.py │ │ │ │ │ ├── segment.py │ │ │ │ │ ├── subsegment.py │ │ │ │ │ ├── throwable.py │ │ │ │ │ ├── trace_header.py │ │ │ │ │ └── traceid.py │ │ │ │ ├── patcher.py │ │ │ │ ├── plugins │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── ec2_plugin.cpython-36.pyc │ │ │ │ │ │ ├── ecs_plugin.cpython-36.pyc │ │ │ │ │ │ ├── elasticbeanstalk_plugin.cpython-36.pyc │ │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ │ ├── ec2_plugin.py │ │ │ │ │ ├── ecs_plugin.py │ │ │ │ │ ├── elasticbeanstalk_plugin.py │ │ │ │ │ └── utils.py │ │ │ │ ├── recorder.py │ │ │ │ ├── sampling │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── connector.cpython-36.pyc │ │ │ │ │ │ ├── default_sampler.cpython-36.pyc │ │ │ │ │ │ ├── reservoir.cpython-36.pyc │ │ │ │ │ │ ├── rule_cache.cpython-36.pyc │ │ │ │ │ │ ├── rule_poller.cpython-36.pyc │ │ │ │ │ │ ├── sampler.cpython-36.pyc │ │ │ │ │ │ ├── sampling_rule.cpython-36.pyc │ │ │ │ │ │ └── target_poller.cpython-36.pyc │ │ │ │ │ ├── connector.py │ │ │ │ │ ├── default_sampler.py │ │ │ │ │ ├── default_sampling_rule.json │ │ │ │ │ ├── local │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── reservoir.cpython-36.pyc │ │ │ │ │ │ │ ├── sampler.cpython-36.pyc │ │ │ │ │ │ │ └── sampling_rule.cpython-36.pyc │ │ │ │ │ │ ├── reservoir.py │ │ │ │ │ │ ├── sampler.py │ │ │ │ │ │ ├── sampling_rule.json │ │ │ │ │ │ └── sampling_rule.py │ │ │ │ │ ├── reservoir.py │ │ │ │ │ ├── rule_cache.py │ │ │ │ │ ├── rule_poller.py │ │ │ │ │ ├── sampler.py │ │ │ │ │ ├── sampling_rule.py │ │ │ │ │ └── target_poller.py │ │ │ │ ├── streaming │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── default_streaming.cpython-36.pyc │ │ │ │ │ └── default_streaming.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── atomic_counter.cpython-36.pyc │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ ├── search_pattern.cpython-36.pyc │ │ │ │ │ └── stacktrace.cpython-36.pyc │ │ │ │ │ ├── atomic_counter.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── search_pattern.py │ │ │ │ │ └── stacktrace.py │ │ │ ├── ext │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── boto_utils.cpython-36.pyc │ │ │ │ │ ├── dbapi2.cpython-36.pyc │ │ │ │ │ └── util.cpython-36.pyc │ │ │ │ ├── aiobotocore │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── aiohttp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ │ └── middleware.cpython-36.pyc │ │ │ │ │ ├── client.py │ │ │ │ │ └── middleware.py │ │ │ │ ├── boto_utils.py │ │ │ │ ├── botocore │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── dbapi2.py │ │ │ │ ├── django │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── apps.cpython-36.pyc │ │ │ │ │ │ ├── conf.cpython-36.pyc │ │ │ │ │ │ ├── db.cpython-36.pyc │ │ │ │ │ │ ├── middleware.cpython-36.pyc │ │ │ │ │ │ └── templates.cpython-36.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── conf.py │ │ │ │ │ ├── db.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ └── templates.py │ │ │ │ ├── flask │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── middleware.cpython-36.pyc │ │ │ │ │ └── middleware.py │ │ │ │ ├── flask_sqlalchemy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── query.cpython-36.pyc │ │ │ │ │ └── query.py │ │ │ │ ├── httplib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── mysql │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── psycopg2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── pymongo │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── pynamodb │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ ├── resources │ │ │ │ │ └── aws_para_whitelist.json │ │ │ │ ├── sqlalchemy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── query.cpython-36.pyc │ │ │ │ │ ├── query.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── decerators.cpython-36.pyc │ │ │ │ │ │ └── decorators.cpython-36.pyc │ │ │ │ │ │ ├── decerators.py │ │ │ │ │ │ └── decorators.py │ │ │ │ ├── sqlite3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ │ └── patch.py │ │ │ │ └── util.py │ │ │ └── version.py │ │ ├── bin │ │ │ ├── __pycache__ │ │ │ │ ├── jp.cpython-36.pyc │ │ │ │ ├── rst2html.cpython-36.pyc │ │ │ │ ├── rst2html4.cpython-36.pyc │ │ │ │ ├── rst2html5.cpython-36.pyc │ │ │ │ ├── rst2latex.cpython-36.pyc │ │ │ │ ├── rst2man.cpython-36.pyc │ │ │ │ ├── rst2odt.cpython-36.pyc │ │ │ │ ├── rst2odt_prepstyles.cpython-36.pyc │ │ │ │ ├── rst2pseudoxml.cpython-36.pyc │ │ │ │ ├── rst2s5.cpython-36.pyc │ │ │ │ ├── rst2xetex.cpython-36.pyc │ │ │ │ ├── rst2xml.cpython-36.pyc │ │ │ │ └── rstpep2html.cpython-36.pyc │ │ │ ├── chardetect │ │ │ ├── futurize │ │ │ ├── jp.py │ │ │ ├── pasteurize │ │ │ ├── rst2html.py │ │ │ ├── rst2html4.py │ │ │ ├── rst2html5.py │ │ │ ├── rst2latex.py │ │ │ ├── rst2man.py │ │ │ ├── rst2odt.py │ │ │ ├── rst2odt_prepstyles.py │ │ │ ├── rst2pseudoxml.py │ │ │ ├── rst2s5.py │ │ │ ├── rst2xetex.py │ │ │ ├── rst2xml.py │ │ │ └── rstpep2html.py │ │ ├── botocore-1.12.8.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── botocore │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── args.cpython-36.pyc │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ ├── awsrequest.cpython-36.pyc │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── config.cpython-36.pyc │ │ │ │ ├── configloader.cpython-36.pyc │ │ │ │ ├── credentials.cpython-36.pyc │ │ │ │ ├── endpoint.cpython-36.pyc │ │ │ │ ├── errorfactory.cpython-36.pyc │ │ │ │ ├── eventstream.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── handlers.cpython-36.pyc │ │ │ │ ├── history.cpython-36.pyc │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ ├── httpsession.cpython-36.pyc │ │ │ │ ├── loaders.cpython-36.pyc │ │ │ │ ├── model.cpython-36.pyc │ │ │ │ ├── paginate.cpython-36.pyc │ │ │ │ ├── parsers.cpython-36.pyc │ │ │ │ ├── regions.cpython-36.pyc │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ ├── retryhandler.cpython-36.pyc │ │ │ │ ├── serialize.cpython-36.pyc │ │ │ │ ├── session.cpython-36.pyc │ │ │ │ ├── signers.cpython-36.pyc │ │ │ │ ├── stub.cpython-36.pyc │ │ │ │ ├── translate.cpython-36.pyc │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ ├── validate.cpython-36.pyc │ │ │ │ └── waiter.cpython-36.pyc │ │ │ ├── args.py │ │ │ ├── auth.py │ │ │ ├── awsrequest.py │ │ │ ├── cacert.pem │ │ │ ├── client.py │ │ │ ├── compat.py │ │ │ ├── config.py │ │ │ ├── configloader.py │ │ │ ├── credentials.py │ │ │ ├── data │ │ │ │ ├── _retry.json │ │ │ │ ├── acm-pca │ │ │ │ │ └── 2017-08-22 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── acm │ │ │ │ │ └── 2015-12-08 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── alexaforbusiness │ │ │ │ │ └── 2017-11-09 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── apigateway │ │ │ │ │ └── 2015-07-09 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── application-autoscaling │ │ │ │ │ └── 2016-02-06 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── appstream │ │ │ │ │ └── 2016-12-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── appsync │ │ │ │ │ └── 2017-07-25 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── athena │ │ │ │ │ └── 2017-05-18 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── autoscaling-plans │ │ │ │ │ └── 2018-01-06 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── autoscaling │ │ │ │ │ └── 2011-01-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── batch │ │ │ │ │ └── 2016-08-10 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── budgets │ │ │ │ │ └── 2016-10-20 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── ce │ │ │ │ │ └── 2017-10-25 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cloud9 │ │ │ │ │ └── 2017-09-23 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── clouddirectory │ │ │ │ │ ├── 2016-05-10 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ │ └── 2017-01-11 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cloudformation │ │ │ │ │ └── 2010-05-15 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── cloudfront │ │ │ │ │ ├── 2014-05-31 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2014-10-21 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2014-11-06 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2015-04-17 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2015-07-27 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2015-09-17 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-01-13 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-01-28 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-08-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-08-20 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-09-07 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-09-29 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-11-25 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2017-03-25 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2017-10-30 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ └── 2018-06-18 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── cloudhsm │ │ │ │ │ └── 2014-05-30 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cloudhsmv2 │ │ │ │ │ └── 2017-04-28 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cloudsearch │ │ │ │ │ ├── 2011-02-01 │ │ │ │ │ │ └── service-2.json │ │ │ │ │ └── 2013-01-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cloudsearchdomain │ │ │ │ │ └── 2013-01-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cloudtrail │ │ │ │ │ └── 2013-11-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cloudwatch │ │ │ │ │ └── 2010-08-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── codebuild │ │ │ │ │ └── 2016-10-06 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── codecommit │ │ │ │ │ └── 2015-04-13 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── codedeploy │ │ │ │ │ └── 2014-10-06 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── codepipeline │ │ │ │ │ └── 2015-07-09 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── codestar │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cognito-identity │ │ │ │ │ └── 2014-06-30 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cognito-idp │ │ │ │ │ └── 2016-04-18 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cognito-sync │ │ │ │ │ └── 2014-06-30 │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── comprehend │ │ │ │ │ └── 2017-11-27 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── config │ │ │ │ │ └── 2014-11-12 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── connect │ │ │ │ │ └── 2017-08-08 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── cur │ │ │ │ │ └── 2017-01-06 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── datapipeline │ │ │ │ │ └── 2012-10-29 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── dax │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── devicefarm │ │ │ │ │ └── 2015-06-23 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── directconnect │ │ │ │ │ └── 2012-10-25 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── discovery │ │ │ │ │ └── 2015-11-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── dlm │ │ │ │ │ └── 2018-01-12 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── dms │ │ │ │ │ └── 2016-01-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── ds │ │ │ │ │ └── 2015-04-16 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── dynamodb │ │ │ │ │ └── 2012-08-10 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── dynamodbstreams │ │ │ │ │ └── 2012-08-10 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── ec2 │ │ │ │ │ ├── 2014-09-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2014-10-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2015-03-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2015-04-15 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2015-10-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-04-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ ├── 2016-09-15 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ └── 2016-11-15 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── ecr │ │ │ │ │ └── 2015-09-21 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── ecs │ │ │ │ │ └── 2014-11-13 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── efs │ │ │ │ │ └── 2015-02-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── eks │ │ │ │ │ └── 2017-11-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── elasticache │ │ │ │ │ ├── 2014-09-30 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ └── 2015-02-02 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── elasticbeanstalk │ │ │ │ │ └── 2010-12-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── elastictranscoder │ │ │ │ │ └── 2012-09-25 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── elb │ │ │ │ │ └── 2012-06-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── elbv2 │ │ │ │ │ └── 2015-12-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── emr │ │ │ │ │ └── 2009-03-31 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── endpoints.json │ │ │ │ ├── es │ │ │ │ │ └── 2015-01-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── events │ │ │ │ │ ├── 2014-02-03 │ │ │ │ │ │ └── service-2.json │ │ │ │ │ └── 2015-10-07 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── firehose │ │ │ │ │ └── 2015-08-04 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── fms │ │ │ │ │ └── 2018-01-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── gamelift │ │ │ │ │ └── 2015-10-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── glacier │ │ │ │ │ └── 2012-06-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── glue │ │ │ │ │ └── 2017-03-31 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── greengrass │ │ │ │ │ └── 2017-06-07 │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── guardduty │ │ │ │ │ └── 2017-11-28 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── health │ │ │ │ │ └── 2016-08-04 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── iam │ │ │ │ │ └── 2010-05-08 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── importexport │ │ │ │ │ └── 2010-06-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── inspector │ │ │ │ │ ├── 2015-08-18 │ │ │ │ │ │ └── service-2.json │ │ │ │ │ └── 2016-02-16 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── iot-data │ │ │ │ │ └── 2015-05-28 │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── iot-jobs-data │ │ │ │ │ └── 2017-09-29 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── iot │ │ │ │ │ └── 2015-05-28 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── iot1click-devices │ │ │ │ │ └── 2018-05-14 │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── iot1click-projects │ │ │ │ │ └── 2018-05-14 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── iotanalytics │ │ │ │ │ └── 2017-11-27 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── kinesis-video-archived-media │ │ │ │ │ └── 2017-09-30 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── kinesis-video-media │ │ │ │ │ └── 2017-09-30 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── kinesis │ │ │ │ │ └── 2013-12-02 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── kinesisanalytics │ │ │ │ │ └── 2015-08-14 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── kinesisvideo │ │ │ │ │ └── 2017-09-30 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── kms │ │ │ │ │ └── 2014-11-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── lambda │ │ │ │ │ ├── 2014-11-11 │ │ │ │ │ │ └── service-2.json │ │ │ │ │ └── 2015-03-31 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── lex-models │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── lex-runtime │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── lightsail │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── logs │ │ │ │ │ └── 2014-03-28 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── machinelearning │ │ │ │ │ └── 2014-12-12 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── macie │ │ │ │ │ └── 2017-12-19 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── marketplace-entitlement │ │ │ │ │ └── 2017-01-11 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── marketplacecommerceanalytics │ │ │ │ │ └── 2015-07-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mediaconvert │ │ │ │ │ └── 2017-08-29 │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── medialive │ │ │ │ │ └── 2017-10-14 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mediapackage │ │ │ │ │ └── 2017-10-12 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mediastore-data │ │ │ │ │ └── 2017-09-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mediastore │ │ │ │ │ └── 2017-09-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mediatailor │ │ │ │ │ └── 2018-04-23 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── meteringmarketplace │ │ │ │ │ └── 2016-01-14 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mgh │ │ │ │ │ └── 2017-05-31 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mobile │ │ │ │ │ └── 2017-07-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mq │ │ │ │ │ └── 2017-11-27 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── mturk │ │ │ │ │ └── 2017-01-17 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── neptune │ │ │ │ │ └── 2014-10-31 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── opsworks │ │ │ │ │ └── 2013-02-18 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── opsworkscm │ │ │ │ │ └── 2016-11-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── organizations │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── pi │ │ │ │ │ └── 2018-02-27 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── pinpoint │ │ │ │ │ └── 2016-12-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── polly │ │ │ │ │ └── 2016-06-10 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── pricing │ │ │ │ │ └── 2017-10-15 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── rds │ │ │ │ │ ├── 2014-09-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ │ └── 2014-10-31 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── redshift │ │ │ │ │ └── 2012-12-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── rekognition │ │ │ │ │ └── 2016-06-27 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── resource-groups │ │ │ │ │ └── 2017-11-27 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── resourcegroupstaggingapi │ │ │ │ │ └── 2017-01-26 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── route53 │ │ │ │ │ └── 2013-04-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── route53domains │ │ │ │ │ └── 2014-05-15 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── s3 │ │ │ │ │ └── 2006-03-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── sagemaker-runtime │ │ │ │ │ └── 2017-05-13 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── sagemaker │ │ │ │ │ └── 2017-07-24 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── sdb │ │ │ │ │ └── 2009-04-15 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── secretsmanager │ │ │ │ │ └── 2017-10-17 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── service-2.sdk-extras.json │ │ │ │ ├── serverlessrepo │ │ │ │ │ └── 2017-09-08 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── servicecatalog │ │ │ │ │ └── 2015-12-10 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── servicediscovery │ │ │ │ │ └── 2017-03-14 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── ses │ │ │ │ │ └── 2010-12-01 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── shield │ │ │ │ │ └── 2016-06-02 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── signer │ │ │ │ │ └── 2017-08-25 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ ├── service-2.json │ │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── sms │ │ │ │ │ └── 2016-10-24 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── snowball │ │ │ │ │ └── 2016-06-30 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── sns │ │ │ │ │ └── 2010-03-31 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── sqs │ │ │ │ │ └── 2012-11-05 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── ssm │ │ │ │ │ └── 2014-11-06 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── stepfunctions │ │ │ │ │ └── 2016-11-23 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── storagegateway │ │ │ │ │ └── 2013-06-30 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── sts │ │ │ │ │ └── 2011-06-15 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── support │ │ │ │ │ └── 2013-04-15 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── swf │ │ │ │ │ └── 2012-01-25 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── transcribe │ │ │ │ │ └── 2017-10-26 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── translate │ │ │ │ │ └── 2017-07-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── waf-regional │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── waf │ │ │ │ │ └── 2015-08-24 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── workdocs │ │ │ │ │ └── 2016-05-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── workmail │ │ │ │ │ └── 2017-10-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ ├── workspaces │ │ │ │ │ └── 2015-04-08 │ │ │ │ │ │ ├── examples-1.json │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── service-2.json │ │ │ │ └── xray │ │ │ │ │ └── 2016-04-12 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── docs │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ ├── docstring.cpython-36.pyc │ │ │ │ │ ├── example.cpython-36.pyc │ │ │ │ │ ├── method.cpython-36.pyc │ │ │ │ │ ├── paginator.cpython-36.pyc │ │ │ │ │ ├── params.cpython-36.pyc │ │ │ │ │ ├── service.cpython-36.pyc │ │ │ │ │ ├── shape.cpython-36.pyc │ │ │ │ │ ├── sharedexample.cpython-36.pyc │ │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ │ └── waiter.cpython-36.pyc │ │ │ │ ├── bcdoc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── docevents.cpython-36.pyc │ │ │ │ │ │ ├── docstringparser.cpython-36.pyc │ │ │ │ │ │ ├── restdoc.cpython-36.pyc │ │ │ │ │ │ ├── style.cpython-36.pyc │ │ │ │ │ │ └── textwriter.cpython-36.pyc │ │ │ │ │ ├── docevents.py │ │ │ │ │ ├── docstringparser.py │ │ │ │ │ ├── restdoc.py │ │ │ │ │ ├── style.py │ │ │ │ │ └── textwriter.py │ │ │ │ ├── client.py │ │ │ │ ├── docstring.py │ │ │ │ ├── example.py │ │ │ │ ├── method.py │ │ │ │ ├── paginator.py │ │ │ │ ├── params.py │ │ │ │ ├── service.py │ │ │ │ ├── shape.py │ │ │ │ ├── sharedexample.py │ │ │ │ ├── utils.py │ │ │ │ └── waiter.py │ │ │ ├── endpoint.py │ │ │ ├── errorfactory.py │ │ │ ├── eventstream.py │ │ │ ├── exceptions.py │ │ │ ├── handlers.py │ │ │ ├── history.py │ │ │ ├── hooks.py │ │ │ ├── httpsession.py │ │ │ ├── loaders.py │ │ │ ├── model.py │ │ │ ├── paginate.py │ │ │ ├── parsers.py │ │ │ ├── regions.py │ │ │ ├── response.py │ │ │ ├── retryhandler.py │ │ │ ├── serialize.py │ │ │ ├── session.py │ │ │ ├── signers.py │ │ │ ├── stub.py │ │ │ ├── translate.py │ │ │ ├── utils.py │ │ │ ├── validate.py │ │ │ ├── vendored │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── adapters.cpython-36.pyc │ │ │ │ │ │ ├── api.cpython-36.pyc │ │ │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ │ │ ├── certs.cpython-36.pyc │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ │ │ ├── sessions.cpython-36.pyc │ │ │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ │ │ ├── structures.cpython-36.pyc │ │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cacert.pem │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── chardetect.cpython-36.pyc │ │ │ │ │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ │ │ │ │ └── utf8prober.cpython-36.pyc │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ │ └── response.cpython-36.pyc │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ │ │ │ └── pyopenssl.cpython-36.pyc │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ └── pyopenssl.py │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ │ │ │ └── url.cpython-36.pyc │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ └── url.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── structures.py │ │ │ │ │ └── utils.py │ │ │ │ └── six.py │ │ │ └── waiter.py │ │ ├── certifi-2018.8.24.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __main__.cpython-36.pyc │ │ │ │ └── core.cpython-36.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── chardet-3.0.4.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ ├── enums.cpython-36.pyc │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ ├── langturkishmodel.cpython-36.pyc │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ ├── utf8prober.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── chardetect.cpython-36.pyc │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ ├── dateutil │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _common.cpython-36.pyc │ │ │ │ ├── _version.cpython-36.pyc │ │ │ │ ├── easter.cpython-36.pyc │ │ │ │ ├── relativedelta.cpython-36.pyc │ │ │ │ ├── rrule.cpython-36.pyc │ │ │ │ ├── tzwin.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── _common.py │ │ │ ├── _version.py │ │ │ ├── easter.py │ │ │ ├── parser │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _parser.cpython-36.pyc │ │ │ │ │ └── isoparser.cpython-36.pyc │ │ │ │ ├── _parser.py │ │ │ │ └── isoparser.py │ │ │ ├── relativedelta.py │ │ │ ├── rrule.py │ │ │ ├── tz │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _common.cpython-36.pyc │ │ │ │ │ ├── _factories.cpython-36.pyc │ │ │ │ │ ├── tz.cpython-36.pyc │ │ │ │ │ └── win.cpython-36.pyc │ │ │ │ ├── _common.py │ │ │ │ ├── _factories.py │ │ │ │ ├── tz.py │ │ │ │ └── win.py │ │ │ ├── tzwin.py │ │ │ ├── utils.py │ │ │ └── zoneinfo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── rebuild.cpython-36.pyc │ │ │ │ ├── dateutil-zoneinfo.tar.gz │ │ │ │ └── rebuild.py │ │ ├── docutils-0.14.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── docutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ ├── core.cpython-36.pyc │ │ │ │ ├── examples.cpython-36.pyc │ │ │ │ ├── frontend.cpython-36.pyc │ │ │ │ ├── io.cpython-36.pyc │ │ │ │ ├── nodes.cpython-36.pyc │ │ │ │ └── statemachine.cpython-36.pyc │ │ │ ├── _compat.py │ │ │ ├── core.py │ │ │ ├── examples.py │ │ │ ├── frontend.py │ │ │ ├── io.py │ │ │ ├── languages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── af.cpython-36.pyc │ │ │ │ │ ├── ca.cpython-36.pyc │ │ │ │ │ ├── cs.cpython-36.pyc │ │ │ │ │ ├── da.cpython-36.pyc │ │ │ │ │ ├── de.cpython-36.pyc │ │ │ │ │ ├── en.cpython-36.pyc │ │ │ │ │ ├── eo.cpython-36.pyc │ │ │ │ │ ├── es.cpython-36.pyc │ │ │ │ │ ├── fa.cpython-36.pyc │ │ │ │ │ ├── fi.cpython-36.pyc │ │ │ │ │ ├── fr.cpython-36.pyc │ │ │ │ │ ├── gl.cpython-36.pyc │ │ │ │ │ ├── he.cpython-36.pyc │ │ │ │ │ ├── it.cpython-36.pyc │ │ │ │ │ ├── ja.cpython-36.pyc │ │ │ │ │ ├── lt.cpython-36.pyc │ │ │ │ │ ├── lv.cpython-36.pyc │ │ │ │ │ ├── nl.cpython-36.pyc │ │ │ │ │ ├── pl.cpython-36.pyc │ │ │ │ │ ├── pt_br.cpython-36.pyc │ │ │ │ │ ├── ru.cpython-36.pyc │ │ │ │ │ ├── sk.cpython-36.pyc │ │ │ │ │ ├── sv.cpython-36.pyc │ │ │ │ │ ├── zh_cn.cpython-36.pyc │ │ │ │ │ └── zh_tw.cpython-36.pyc │ │ │ │ ├── af.py │ │ │ │ ├── ca.py │ │ │ │ ├── cs.py │ │ │ │ ├── da.py │ │ │ │ ├── de.py │ │ │ │ ├── en.py │ │ │ │ ├── eo.py │ │ │ │ ├── es.py │ │ │ │ ├── fa.py │ │ │ │ ├── fi.py │ │ │ │ ├── fr.py │ │ │ │ ├── gl.py │ │ │ │ ├── he.py │ │ │ │ ├── it.py │ │ │ │ ├── ja.py │ │ │ │ ├── lt.py │ │ │ │ ├── lv.py │ │ │ │ ├── nl.py │ │ │ │ ├── pl.py │ │ │ │ ├── pt_br.py │ │ │ │ ├── ru.py │ │ │ │ ├── sk.py │ │ │ │ ├── sv.py │ │ │ │ ├── zh_cn.py │ │ │ │ └── zh_tw.py │ │ │ ├── nodes.py │ │ │ ├── parsers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── null.cpython-36.pyc │ │ │ │ ├── null.py │ │ │ │ └── rst │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── roles.cpython-36.pyc │ │ │ │ │ ├── states.cpython-36.pyc │ │ │ │ │ └── tableparser.cpython-36.pyc │ │ │ │ │ ├── directives │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── admonitions.cpython-36.pyc │ │ │ │ │ │ ├── body.cpython-36.pyc │ │ │ │ │ │ ├── html.cpython-36.pyc │ │ │ │ │ │ ├── images.cpython-36.pyc │ │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ │ ├── parts.cpython-36.pyc │ │ │ │ │ │ ├── references.cpython-36.pyc │ │ │ │ │ │ └── tables.cpython-36.pyc │ │ │ │ │ ├── admonitions.py │ │ │ │ │ ├── body.py │ │ │ │ │ ├── html.py │ │ │ │ │ ├── images.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── parts.py │ │ │ │ │ ├── references.py │ │ │ │ │ └── tables.py │ │ │ │ │ ├── include │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── isoamsa.txt │ │ │ │ │ ├── isoamsb.txt │ │ │ │ │ ├── isoamsc.txt │ │ │ │ │ ├── isoamsn.txt │ │ │ │ │ ├── isoamso.txt │ │ │ │ │ ├── isoamsr.txt │ │ │ │ │ ├── isobox.txt │ │ │ │ │ ├── isocyr1.txt │ │ │ │ │ ├── isocyr2.txt │ │ │ │ │ ├── isodia.txt │ │ │ │ │ ├── isogrk1.txt │ │ │ │ │ ├── isogrk2.txt │ │ │ │ │ ├── isogrk3.txt │ │ │ │ │ ├── isogrk4-wide.txt │ │ │ │ │ ├── isogrk4.txt │ │ │ │ │ ├── isolat1.txt │ │ │ │ │ ├── isolat2.txt │ │ │ │ │ ├── isomfrk-wide.txt │ │ │ │ │ ├── isomfrk.txt │ │ │ │ │ ├── isomopf-wide.txt │ │ │ │ │ ├── isomopf.txt │ │ │ │ │ ├── isomscr-wide.txt │ │ │ │ │ ├── isomscr.txt │ │ │ │ │ ├── isonum.txt │ │ │ │ │ ├── isopub.txt │ │ │ │ │ ├── isotech.txt │ │ │ │ │ ├── mmlalias.txt │ │ │ │ │ ├── mmlextra-wide.txt │ │ │ │ │ ├── mmlextra.txt │ │ │ │ │ ├── s5defs.txt │ │ │ │ │ ├── xhtml1-lat1.txt │ │ │ │ │ ├── xhtml1-special.txt │ │ │ │ │ └── xhtml1-symbol.txt │ │ │ │ │ ├── languages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── af.cpython-36.pyc │ │ │ │ │ │ ├── ca.cpython-36.pyc │ │ │ │ │ │ ├── cs.cpython-36.pyc │ │ │ │ │ │ ├── da.cpython-36.pyc │ │ │ │ │ │ ├── de.cpython-36.pyc │ │ │ │ │ │ ├── en.cpython-36.pyc │ │ │ │ │ │ ├── eo.cpython-36.pyc │ │ │ │ │ │ ├── es.cpython-36.pyc │ │ │ │ │ │ ├── fa.cpython-36.pyc │ │ │ │ │ │ ├── fi.cpython-36.pyc │ │ │ │ │ │ ├── fr.cpython-36.pyc │ │ │ │ │ │ ├── gl.cpython-36.pyc │ │ │ │ │ │ ├── he.cpython-36.pyc │ │ │ │ │ │ ├── it.cpython-36.pyc │ │ │ │ │ │ ├── ja.cpython-36.pyc │ │ │ │ │ │ ├── lt.cpython-36.pyc │ │ │ │ │ │ ├── lv.cpython-36.pyc │ │ │ │ │ │ ├── nl.cpython-36.pyc │ │ │ │ │ │ ├── pl.cpython-36.pyc │ │ │ │ │ │ ├── pt_br.cpython-36.pyc │ │ │ │ │ │ ├── ru.cpython-36.pyc │ │ │ │ │ │ ├── sk.cpython-36.pyc │ │ │ │ │ │ ├── sv.cpython-36.pyc │ │ │ │ │ │ ├── zh_cn.cpython-36.pyc │ │ │ │ │ │ └── zh_tw.cpython-36.pyc │ │ │ │ │ ├── af.py │ │ │ │ │ ├── ca.py │ │ │ │ │ ├── cs.py │ │ │ │ │ ├── da.py │ │ │ │ │ ├── de.py │ │ │ │ │ ├── en.py │ │ │ │ │ ├── eo.py │ │ │ │ │ ├── es.py │ │ │ │ │ ├── fa.py │ │ │ │ │ ├── fi.py │ │ │ │ │ ├── fr.py │ │ │ │ │ ├── gl.py │ │ │ │ │ ├── he.py │ │ │ │ │ ├── it.py │ │ │ │ │ ├── ja.py │ │ │ │ │ ├── lt.py │ │ │ │ │ ├── lv.py │ │ │ │ │ ├── nl.py │ │ │ │ │ ├── pl.py │ │ │ │ │ ├── pt_br.py │ │ │ │ │ ├── ru.py │ │ │ │ │ ├── sk.py │ │ │ │ │ ├── sv.py │ │ │ │ │ ├── zh_cn.py │ │ │ │ │ └── zh_tw.py │ │ │ │ │ ├── roles.py │ │ │ │ │ ├── states.py │ │ │ │ │ └── tableparser.py │ │ │ ├── readers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── doctree.cpython-36.pyc │ │ │ │ │ ├── pep.cpython-36.pyc │ │ │ │ │ └── standalone.cpython-36.pyc │ │ │ │ ├── doctree.py │ │ │ │ ├── pep.py │ │ │ │ └── standalone.py │ │ │ ├── statemachine.py │ │ │ ├── transforms │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── components.cpython-36.pyc │ │ │ │ │ ├── frontmatter.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ ├── parts.cpython-36.pyc │ │ │ │ │ ├── peps.cpython-36.pyc │ │ │ │ │ ├── references.cpython-36.pyc │ │ │ │ │ ├── universal.cpython-36.pyc │ │ │ │ │ └── writer_aux.cpython-36.pyc │ │ │ │ ├── components.py │ │ │ │ ├── frontmatter.py │ │ │ │ ├── misc.py │ │ │ │ ├── parts.py │ │ │ │ ├── peps.py │ │ │ │ ├── references.py │ │ │ │ ├── universal.py │ │ │ │ └── writer_aux.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── code_analyzer.cpython-36.pyc │ │ │ │ │ ├── error_reporting.cpython-36.pyc │ │ │ │ │ ├── punctuation_chars.cpython-36.pyc │ │ │ │ │ ├── roman.cpython-36.pyc │ │ │ │ │ ├── smartquotes.cpython-36.pyc │ │ │ │ │ └── urischemes.cpython-36.pyc │ │ │ │ ├── code_analyzer.py │ │ │ │ ├── error_reporting.py │ │ │ │ ├── math │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── latex2mathml.cpython-36.pyc │ │ │ │ │ │ ├── math2html.cpython-36.pyc │ │ │ │ │ │ ├── tex2mathml_extern.cpython-36.pyc │ │ │ │ │ │ ├── tex2unichar.cpython-36.pyc │ │ │ │ │ │ └── unichar2tex.cpython-36.pyc │ │ │ │ │ ├── latex2mathml.py │ │ │ │ │ ├── math2html.py │ │ │ │ │ ├── tex2mathml_extern.py │ │ │ │ │ ├── tex2unichar.py │ │ │ │ │ └── unichar2tex.py │ │ │ │ ├── punctuation_chars.py │ │ │ │ ├── roman.py │ │ │ │ ├── smartquotes.py │ │ │ │ └── urischemes.py │ │ │ └── writers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _html_base.cpython-36.pyc │ │ │ │ ├── docutils_xml.cpython-36.pyc │ │ │ │ ├── manpage.cpython-36.pyc │ │ │ │ ├── null.cpython-36.pyc │ │ │ │ └── pseudoxml.cpython-36.pyc │ │ │ │ ├── _html_base.py │ │ │ │ ├── docutils_xml.py │ │ │ │ ├── html4css1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── html4css1.css │ │ │ │ └── template.txt │ │ │ │ ├── html5_polyglot │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── math.css │ │ │ │ ├── minimal.css │ │ │ │ ├── plain.css │ │ │ │ └── template.txt │ │ │ │ ├── latex2e │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── default.tex │ │ │ │ ├── titlepage.tex │ │ │ │ └── xelatex.tex │ │ │ │ ├── manpage.py │ │ │ │ ├── null.py │ │ │ │ ├── odf_odt │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── pygmentsformatter.cpython-36.pyc │ │ │ │ ├── pygmentsformatter.py │ │ │ │ └── styles.odt │ │ │ │ ├── pep_html │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── pep.css │ │ │ │ └── template.txt │ │ │ │ ├── pseudoxml.py │ │ │ │ ├── s5_html │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── themes │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── big-black │ │ │ │ │ ├── __base__ │ │ │ │ │ ├── framing.css │ │ │ │ │ └── pretty.css │ │ │ │ │ ├── big-white │ │ │ │ │ ├── framing.css │ │ │ │ │ └── pretty.css │ │ │ │ │ ├── default │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── framing.css │ │ │ │ │ ├── iepngfix.htc │ │ │ │ │ ├── opera.css │ │ │ │ │ ├── outline.css │ │ │ │ │ ├── pretty.css │ │ │ │ │ ├── print.css │ │ │ │ │ ├── s5-core.css │ │ │ │ │ ├── slides.css │ │ │ │ │ └── slides.js │ │ │ │ │ ├── medium-black │ │ │ │ │ ├── __base__ │ │ │ │ │ └── pretty.css │ │ │ │ │ ├── medium-white │ │ │ │ │ ├── framing.css │ │ │ │ │ └── pretty.css │ │ │ │ │ ├── small-black │ │ │ │ │ ├── __base__ │ │ │ │ │ └── pretty.css │ │ │ │ │ └── small-white │ │ │ │ │ ├── framing.css │ │ │ │ │ └── pretty.css │ │ │ │ └── xetex │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── future-0.16.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── future │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _markupbase.cpython-36.pyc │ │ │ │ │ ├── datetime.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ ├── socket.cpython-36.pyc │ │ │ │ │ ├── socketserver.cpython-36.pyc │ │ │ │ │ └── total_ordering.cpython-36.pyc │ │ │ │ ├── _markupbase.py │ │ │ │ ├── datetime.py │ │ │ │ ├── email │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── _encoded_words.cpython-36.pyc │ │ │ │ │ │ ├── _header_value_parser.cpython-36.pyc │ │ │ │ │ │ ├── _parseaddr.cpython-36.pyc │ │ │ │ │ │ ├── _policybase.cpython-36.pyc │ │ │ │ │ │ ├── base64mime.cpython-36.pyc │ │ │ │ │ │ ├── charset.cpython-36.pyc │ │ │ │ │ │ ├── encoders.cpython-36.pyc │ │ │ │ │ │ ├── errors.cpython-36.pyc │ │ │ │ │ │ ├── feedparser.cpython-36.pyc │ │ │ │ │ │ ├── generator.cpython-36.pyc │ │ │ │ │ │ ├── header.cpython-36.pyc │ │ │ │ │ │ ├── headerregistry.cpython-36.pyc │ │ │ │ │ │ ├── iterators.cpython-36.pyc │ │ │ │ │ │ ├── message.cpython-36.pyc │ │ │ │ │ │ ├── parser.cpython-36.pyc │ │ │ │ │ │ ├── policy.cpython-36.pyc │ │ │ │ │ │ ├── quoprimime.cpython-36.pyc │ │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ │ ├── _encoded_words.py │ │ │ │ │ ├── _header_value_parser.py │ │ │ │ │ ├── _parseaddr.py │ │ │ │ │ ├── _policybase.py │ │ │ │ │ ├── base64mime.py │ │ │ │ │ ├── charset.py │ │ │ │ │ ├── encoders.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── feedparser.py │ │ │ │ │ ├── generator.py │ │ │ │ │ ├── header.py │ │ │ │ │ ├── headerregistry.py │ │ │ │ │ ├── iterators.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── application.cpython-36.pyc │ │ │ │ │ │ │ ├── audio.cpython-36.pyc │ │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ │ ├── image.cpython-36.pyc │ │ │ │ │ │ │ ├── message.cpython-36.pyc │ │ │ │ │ │ │ ├── multipart.cpython-36.pyc │ │ │ │ │ │ │ ├── nonmultipart.cpython-36.pyc │ │ │ │ │ │ │ └── text.cpython-36.pyc │ │ │ │ │ │ ├── application.py │ │ │ │ │ │ ├── audio.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── image.py │ │ │ │ │ │ ├── message.py │ │ │ │ │ │ ├── multipart.py │ │ │ │ │ │ ├── nonmultipart.py │ │ │ │ │ │ └── text.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── policy.py │ │ │ │ │ ├── quoprimime.py │ │ │ │ │ └── utils.py │ │ │ │ ├── html │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── entities.cpython-36.pyc │ │ │ │ │ │ └── parser.cpython-36.pyc │ │ │ │ │ ├── entities.py │ │ │ │ │ └── parser.py │ │ │ │ ├── http │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ │ ├── cookiejar.cpython-36.pyc │ │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ │ └── server.cpython-36.pyc │ │ │ │ │ ├── client.py │ │ │ │ │ ├── cookiejar.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ └── server.py │ │ │ │ ├── misc.py │ │ │ │ ├── socket.py │ │ │ │ ├── socketserver.py │ │ │ │ ├── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── pystone.cpython-36.pyc │ │ │ │ │ │ ├── ssl_servers.cpython-36.pyc │ │ │ │ │ │ └── support.cpython-36.pyc │ │ │ │ │ ├── badcert.pem │ │ │ │ │ ├── badkey.pem │ │ │ │ │ ├── dh512.pem │ │ │ │ │ ├── https_svn_python_org_root.pem │ │ │ │ │ ├── keycert.passwd.pem │ │ │ │ │ ├── keycert.pem │ │ │ │ │ ├── keycert2.pem │ │ │ │ │ ├── nokia.pem │ │ │ │ │ ├── nullbytecert.pem │ │ │ │ │ ├── nullcert.pem │ │ │ │ │ ├── pystone.py │ │ │ │ │ ├── sha256.pem │ │ │ │ │ ├── ssl_cert.pem │ │ │ │ │ ├── ssl_key.passwd.pem │ │ │ │ │ ├── ssl_key.pem │ │ │ │ │ ├── ssl_servers.py │ │ │ │ │ └── support.py │ │ │ │ ├── total_ordering.py │ │ │ │ ├── urllib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── error.cpython-36.pyc │ │ │ │ │ │ ├── parse.cpython-36.pyc │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ │ └── robotparser.cpython-36.pyc │ │ │ │ │ ├── error.py │ │ │ │ │ ├── parse.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── robotparser.py │ │ │ │ └── xmlrpc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ └── server.cpython-36.pyc │ │ │ │ │ ├── client.py │ │ │ │ │ └── server.py │ │ │ ├── builtins │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── disabled.cpython-36.pyc │ │ │ │ │ ├── iterators.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ ├── newnext.cpython-36.pyc │ │ │ │ │ ├── newround.cpython-36.pyc │ │ │ │ │ └── newsuper.cpython-36.pyc │ │ │ │ ├── disabled.py │ │ │ │ ├── iterators.py │ │ │ │ ├── misc.py │ │ │ │ ├── newnext.py │ │ │ │ ├── newround.py │ │ │ │ └── newsuper.py │ │ │ ├── moves │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _dummy_thread.cpython-36.pyc │ │ │ │ │ ├── _markupbase.cpython-36.pyc │ │ │ │ │ ├── _thread.cpython-36.pyc │ │ │ │ │ ├── builtins.cpython-36.pyc │ │ │ │ │ ├── collections.cpython-36.pyc │ │ │ │ │ ├── configparser.cpython-36.pyc │ │ │ │ │ ├── copyreg.cpython-36.pyc │ │ │ │ │ ├── itertools.cpython-36.pyc │ │ │ │ │ ├── pickle.cpython-36.pyc │ │ │ │ │ ├── queue.cpython-36.pyc │ │ │ │ │ ├── reprlib.cpython-36.pyc │ │ │ │ │ ├── socketserver.cpython-36.pyc │ │ │ │ │ ├── subprocess.cpython-36.pyc │ │ │ │ │ ├── sys.cpython-36.pyc │ │ │ │ │ └── winreg.cpython-36.pyc │ │ │ │ ├── _dummy_thread.py │ │ │ │ ├── _markupbase.py │ │ │ │ ├── _thread.py │ │ │ │ ├── builtins.py │ │ │ │ ├── collections.py │ │ │ │ ├── configparser.py │ │ │ │ ├── copyreg.py │ │ │ │ ├── dbm │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── dumb.cpython-36.pyc │ │ │ │ │ │ ├── gnu.cpython-36.pyc │ │ │ │ │ │ └── ndbm.cpython-36.pyc │ │ │ │ │ ├── dumb.py │ │ │ │ │ ├── gnu.py │ │ │ │ │ └── ndbm.py │ │ │ │ ├── html │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── entities.cpython-36.pyc │ │ │ │ │ │ └── parser.cpython-36.pyc │ │ │ │ │ ├── entities.py │ │ │ │ │ └── parser.py │ │ │ │ ├── http │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ │ ├── cookiejar.cpython-36.pyc │ │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ │ └── server.cpython-36.pyc │ │ │ │ │ ├── client.py │ │ │ │ │ ├── cookiejar.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ └── server.py │ │ │ │ ├── itertools.py │ │ │ │ ├── pickle.py │ │ │ │ ├── queue.py │ │ │ │ ├── reprlib.py │ │ │ │ ├── socketserver.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── sys.py │ │ │ │ ├── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── support.cpython-36.pyc │ │ │ │ │ └── support.py │ │ │ │ ├── tkinter │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── colorchooser.cpython-36.pyc │ │ │ │ │ │ ├── commondialog.cpython-36.pyc │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ ├── dialog.cpython-36.pyc │ │ │ │ │ │ ├── dnd.cpython-36.pyc │ │ │ │ │ │ ├── filedialog.cpython-36.pyc │ │ │ │ │ │ ├── font.cpython-36.pyc │ │ │ │ │ │ ├── messagebox.cpython-36.pyc │ │ │ │ │ │ ├── scrolledtext.cpython-36.pyc │ │ │ │ │ │ ├── simpledialog.cpython-36.pyc │ │ │ │ │ │ ├── tix.cpython-36.pyc │ │ │ │ │ │ └── ttk.cpython-36.pyc │ │ │ │ │ ├── colorchooser.py │ │ │ │ │ ├── commondialog.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── dialog.py │ │ │ │ │ ├── dnd.py │ │ │ │ │ ├── filedialog.py │ │ │ │ │ ├── font.py │ │ │ │ │ ├── messagebox.py │ │ │ │ │ ├── scrolledtext.py │ │ │ │ │ ├── simpledialog.py │ │ │ │ │ ├── tix.py │ │ │ │ │ └── ttk.py │ │ │ │ ├── urllib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── error.cpython-36.pyc │ │ │ │ │ │ ├── parse.cpython-36.pyc │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ │ └── robotparser.cpython-36.pyc │ │ │ │ │ ├── error.py │ │ │ │ │ ├── parse.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── robotparser.py │ │ │ │ ├── winreg.py │ │ │ │ └── xmlrpc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ └── server.cpython-36.pyc │ │ │ │ │ ├── client.py │ │ │ │ │ └── server.py │ │ │ ├── standard_library │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── base.cpython-36.pyc │ │ │ │ └── base.py │ │ │ ├── types │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── newbytes.cpython-36.pyc │ │ │ │ │ ├── newdict.cpython-36.pyc │ │ │ │ │ ├── newint.cpython-36.pyc │ │ │ │ │ ├── newlist.cpython-36.pyc │ │ │ │ │ ├── newmemoryview.cpython-36.pyc │ │ │ │ │ ├── newobject.cpython-36.pyc │ │ │ │ │ ├── newopen.cpython-36.pyc │ │ │ │ │ ├── newrange.cpython-36.pyc │ │ │ │ │ └── newstr.cpython-36.pyc │ │ │ │ ├── newbytes.py │ │ │ │ ├── newdict.py │ │ │ │ ├── newint.py │ │ │ │ ├── newlist.py │ │ │ │ ├── newmemoryview.py │ │ │ │ ├── newobject.py │ │ │ │ ├── newopen.py │ │ │ │ ├── newrange.py │ │ │ │ └── newstr.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── surrogateescape.cpython-36.pyc │ │ │ │ └── surrogateescape.py │ │ ├── idna-2.7.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── codec.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── core.cpython-36.pyc │ │ │ │ ├── idnadata.cpython-36.pyc │ │ │ │ ├── intranges.cpython-36.pyc │ │ │ │ ├── package_data.cpython-36.pyc │ │ │ │ └── uts46data.cpython-36.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── jmespath-0.9.3.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ ├── pbr.json │ │ │ └── top_level.txt │ │ ├── jmespath │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── ast.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── functions.cpython-36.pyc │ │ │ │ ├── lexer.cpython-36.pyc │ │ │ │ ├── parser.cpython-36.pyc │ │ │ │ └── visitor.cpython-36.pyc │ │ │ ├── ast.py │ │ │ ├── compat.py │ │ │ ├── exceptions.py │ │ │ ├── functions.py │ │ │ ├── lexer.py │ │ │ ├── parser.py │ │ │ └── visitor.py │ │ ├── jsonpickle-1.0.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── jsonpickle │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── backend.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── handlers.cpython-36.pyc │ │ │ │ ├── pickler.cpython-36.pyc │ │ │ │ ├── tags.cpython-36.pyc │ │ │ │ ├── unpickler.cpython-36.pyc │ │ │ │ ├── util.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── backend.py │ │ │ ├── compat.py │ │ │ ├── ext │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── numpy.cpython-36.pyc │ │ │ │ │ └── pandas.cpython-36.pyc │ │ │ │ ├── numpy.py │ │ │ │ └── pandas.py │ │ │ ├── handlers.py │ │ │ ├── pickler.py │ │ │ ├── tags.py │ │ │ ├── unpickler.py │ │ │ ├── util.py │ │ │ └── version.py │ │ ├── libfuturize │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fixer_util.cpython-36.pyc │ │ │ │ └── main.cpython-36.pyc │ │ │ ├── fixer_util.py │ │ │ ├── fixes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fix_UserDict.cpython-36.pyc │ │ │ │ │ ├── fix_absolute_import.cpython-36.pyc │ │ │ │ │ ├── fix_add__future__imports_except_unicode_literals.cpython-36.pyc │ │ │ │ │ ├── fix_basestring.cpython-36.pyc │ │ │ │ │ ├── fix_bytes.cpython-36.pyc │ │ │ │ │ ├── fix_cmp.cpython-36.pyc │ │ │ │ │ ├── fix_division.cpython-36.pyc │ │ │ │ │ ├── fix_division_safe.cpython-36.pyc │ │ │ │ │ ├── fix_execfile.cpython-36.pyc │ │ │ │ │ ├── fix_future_builtins.cpython-36.pyc │ │ │ │ │ ├── fix_future_standard_library.cpython-36.pyc │ │ │ │ │ ├── fix_future_standard_library_urllib.cpython-36.pyc │ │ │ │ │ ├── fix_metaclass.cpython-36.pyc │ │ │ │ │ ├── fix_next_call.cpython-36.pyc │ │ │ │ │ ├── fix_object.cpython-36.pyc │ │ │ │ │ ├── fix_oldstr_wrap.cpython-36.pyc │ │ │ │ │ ├── fix_order___future__imports.cpython-36.pyc │ │ │ │ │ ├── fix_print.cpython-36.pyc │ │ │ │ │ ├── fix_print_with_import.cpython-36.pyc │ │ │ │ │ ├── fix_raise.cpython-36.pyc │ │ │ │ │ ├── fix_remove_old__future__imports.cpython-36.pyc │ │ │ │ │ ├── fix_unicode_keep_u.cpython-36.pyc │ │ │ │ │ ├── fix_unicode_literals_import.cpython-36.pyc │ │ │ │ │ └── fix_xrange_with_import.cpython-36.pyc │ │ │ │ ├── fix_UserDict.py │ │ │ │ ├── fix_absolute_import.py │ │ │ │ ├── fix_add__future__imports_except_unicode_literals.py │ │ │ │ ├── fix_basestring.py │ │ │ │ ├── fix_bytes.py │ │ │ │ ├── fix_cmp.py │ │ │ │ ├── fix_division.py │ │ │ │ ├── fix_division_safe.py │ │ │ │ ├── fix_execfile.py │ │ │ │ ├── fix_future_builtins.py │ │ │ │ ├── fix_future_standard_library.py │ │ │ │ ├── fix_future_standard_library_urllib.py │ │ │ │ ├── fix_metaclass.py │ │ │ │ ├── fix_next_call.py │ │ │ │ ├── fix_object.py │ │ │ │ ├── fix_oldstr_wrap.py │ │ │ │ ├── fix_order___future__imports.py │ │ │ │ ├── fix_print.py │ │ │ │ ├── fix_print_with_import.py │ │ │ │ ├── fix_raise.py │ │ │ │ ├── fix_remove_old__future__imports.py │ │ │ │ ├── fix_unicode_keep_u.py │ │ │ │ ├── fix_unicode_literals_import.py │ │ │ │ └── fix_xrange_with_import.py │ │ │ └── main.py │ │ ├── libpasteurize │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── main.cpython-36.pyc │ │ │ ├── fixes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── feature_base.cpython-36.pyc │ │ │ │ │ ├── fix_add_all__future__imports.cpython-36.pyc │ │ │ │ │ ├── fix_add_all_future_builtins.cpython-36.pyc │ │ │ │ │ ├── fix_add_future_standard_library_import.cpython-36.pyc │ │ │ │ │ ├── fix_annotations.cpython-36.pyc │ │ │ │ │ ├── fix_division.cpython-36.pyc │ │ │ │ │ ├── fix_features.cpython-36.pyc │ │ │ │ │ ├── fix_fullargspec.cpython-36.pyc │ │ │ │ │ ├── fix_future_builtins.cpython-36.pyc │ │ │ │ │ ├── fix_getcwd.cpython-36.pyc │ │ │ │ │ ├── fix_imports.cpython-36.pyc │ │ │ │ │ ├── fix_imports2.cpython-36.pyc │ │ │ │ │ ├── fix_kwargs.cpython-36.pyc │ │ │ │ │ ├── fix_memoryview.cpython-36.pyc │ │ │ │ │ ├── fix_metaclass.cpython-36.pyc │ │ │ │ │ ├── fix_newstyle.cpython-36.pyc │ │ │ │ │ ├── fix_next.cpython-36.pyc │ │ │ │ │ ├── fix_printfunction.cpython-36.pyc │ │ │ │ │ ├── fix_raise.cpython-36.pyc │ │ │ │ │ ├── fix_raise_.cpython-36.pyc │ │ │ │ │ ├── fix_throw.cpython-36.pyc │ │ │ │ │ └── fix_unpacking.cpython-36.pyc │ │ │ │ ├── feature_base.py │ │ │ │ ├── fix_add_all__future__imports.py │ │ │ │ ├── fix_add_all_future_builtins.py │ │ │ │ ├── fix_add_future_standard_library_import.py │ │ │ │ ├── fix_annotations.py │ │ │ │ ├── fix_division.py │ │ │ │ ├── fix_features.py │ │ │ │ ├── fix_fullargspec.py │ │ │ │ ├── fix_future_builtins.py │ │ │ │ ├── fix_getcwd.py │ │ │ │ ├── fix_imports.py │ │ │ │ ├── fix_imports2.py │ │ │ │ ├── fix_kwargs.py │ │ │ │ ├── fix_memoryview.py │ │ │ │ ├── fix_metaclass.py │ │ │ │ ├── fix_newstyle.py │ │ │ │ ├── fix_next.py │ │ │ │ ├── fix_printfunction.py │ │ │ │ ├── fix_raise.py │ │ │ │ ├── fix_raise_.py │ │ │ │ ├── fix_throw.py │ │ │ │ └── fix_unpacking.py │ │ │ └── main.py │ │ ├── mysfitsPostQuestion.py │ │ ├── past │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── builtins │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ └── noniterators.cpython-36.pyc │ │ │ │ ├── misc.py │ │ │ │ └── noniterators.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── translation │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── types │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── basestring.cpython-36.pyc │ │ │ │ │ ├── olddict.cpython-36.pyc │ │ │ │ │ └── oldstr.cpython-36.pyc │ │ │ │ ├── basestring.py │ │ │ │ ├── olddict.py │ │ │ │ └── oldstr.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── python_dateutil-2.7.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── requests-2.19.1.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __version__.cpython-36.pyc │ │ │ │ ├── _internal_utils.cpython-36.pyc │ │ │ │ ├── adapters.cpython-36.pyc │ │ │ │ ├── api.cpython-36.pyc │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ ├── certs.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── help.cpython-36.pyc │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ ├── packages.cpython-36.pyc │ │ │ │ ├── sessions.cpython-36.pyc │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ ├── structures.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── requirements.txt │ │ ├── six-1.11.0.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── six.py │ │ ├── urllib3-1.23.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ └── response.cpython-36.pyc │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── appengine.cpython-36.pyc │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ ├── pyopenssl.cpython-36.pyc │ │ │ │ │ ├── securetransport.cpython-36.pyc │ │ │ │ │ └── socks.cpython-36.pyc │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── bindings.cpython-36.pyc │ │ │ │ │ │ └── low_level.cpython-36.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── makefile.cpython-36.pyc │ │ │ │ │ └── makefile.py │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ ├── queue.cpython-36.pyc │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ ├── url.cpython-36.pyc │ │ │ │ └── wait.cpython-36.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ ├── wrapt-1.10.11.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ └── wrapt │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── arguments.cpython-36.pyc │ │ │ ├── decorators.cpython-36.pyc │ │ │ ├── importer.cpython-36.pyc │ │ │ └── wrappers.cpython-36.pyc │ │ │ ├── _wrappers.cpython-36m-x86_64-linux-gnu.so │ │ │ ├── arguments.py │ │ │ ├── decorators.py │ │ │ ├── importer.py │ │ │ └── wrappers.py │ └── ProcessQuestionsStream │ │ ├── __pycache__ │ │ └── six.cpython-36.pyc │ │ ├── aws_xray_sdk-2.1.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── aws_xray_sdk │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── version.cpython-36.pyc │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── async_context.cpython-36.pyc │ │ │ │ ├── async_recorder.cpython-36.pyc │ │ │ │ ├── context.cpython-36.pyc │ │ │ │ ├── daemon_config.cpython-36.pyc │ │ │ │ ├── lambda_launcher.cpython-36.pyc │ │ │ │ ├── patcher.cpython-36.pyc │ │ │ │ └── recorder.cpython-36.pyc │ │ │ ├── async_context.py │ │ │ ├── async_recorder.py │ │ │ ├── context.py │ │ │ ├── daemon_config.py │ │ │ ├── emitters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── udp_emitter.cpython-36.pyc │ │ │ │ └── udp_emitter.py │ │ │ ├── exceptions │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── exceptions.cpython-36.pyc │ │ │ │ └── exceptions.py │ │ │ ├── lambda_launcher.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── default_dynamic_naming.cpython-36.pyc │ │ │ │ │ ├── dummy_entities.cpython-36.pyc │ │ │ │ │ ├── entity.cpython-36.pyc │ │ │ │ │ ├── facade_segment.cpython-36.pyc │ │ │ │ │ ├── http.cpython-36.pyc │ │ │ │ │ ├── segment.cpython-36.pyc │ │ │ │ │ ├── subsegment.cpython-36.pyc │ │ │ │ │ ├── throwable.cpython-36.pyc │ │ │ │ │ ├── trace_header.cpython-36.pyc │ │ │ │ │ └── traceid.cpython-36.pyc │ │ │ │ ├── default_dynamic_naming.py │ │ │ │ ├── dummy_entities.py │ │ │ │ ├── entity.py │ │ │ │ ├── facade_segment.py │ │ │ │ ├── http.py │ │ │ │ ├── segment.py │ │ │ │ ├── subsegment.py │ │ │ │ ├── throwable.py │ │ │ │ ├── trace_header.py │ │ │ │ └── traceid.py │ │ │ ├── patcher.py │ │ │ ├── plugins │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── ec2_plugin.cpython-36.pyc │ │ │ │ │ ├── ecs_plugin.cpython-36.pyc │ │ │ │ │ ├── elasticbeanstalk_plugin.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── ec2_plugin.py │ │ │ │ ├── ecs_plugin.py │ │ │ │ ├── elasticbeanstalk_plugin.py │ │ │ │ └── utils.py │ │ │ ├── recorder.py │ │ │ ├── sampling │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── connector.cpython-36.pyc │ │ │ │ │ ├── default_sampler.cpython-36.pyc │ │ │ │ │ ├── reservoir.cpython-36.pyc │ │ │ │ │ ├── rule_cache.cpython-36.pyc │ │ │ │ │ ├── rule_poller.cpython-36.pyc │ │ │ │ │ ├── sampler.cpython-36.pyc │ │ │ │ │ ├── sampling_rule.cpython-36.pyc │ │ │ │ │ └── target_poller.cpython-36.pyc │ │ │ │ ├── connector.py │ │ │ │ ├── default_sampler.py │ │ │ │ ├── default_sampling_rule.json │ │ │ │ ├── local │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── reservoir.cpython-36.pyc │ │ │ │ │ │ ├── sampler.cpython-36.pyc │ │ │ │ │ │ └── sampling_rule.cpython-36.pyc │ │ │ │ │ ├── reservoir.py │ │ │ │ │ ├── sampler.py │ │ │ │ │ ├── sampling_rule.json │ │ │ │ │ └── sampling_rule.py │ │ │ │ ├── reservoir.py │ │ │ │ ├── rule_cache.py │ │ │ │ ├── rule_poller.py │ │ │ │ ├── sampler.py │ │ │ │ ├── sampling_rule.py │ │ │ │ └── target_poller.py │ │ │ ├── streaming │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── default_streaming.cpython-36.pyc │ │ │ │ └── default_streaming.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── atomic_counter.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── search_pattern.cpython-36.pyc │ │ │ │ └── stacktrace.cpython-36.pyc │ │ │ │ ├── atomic_counter.py │ │ │ │ ├── compat.py │ │ │ │ ├── search_pattern.py │ │ │ │ └── stacktrace.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── boto_utils.cpython-36.pyc │ │ │ │ ├── dbapi2.cpython-36.pyc │ │ │ │ └── util.cpython-36.pyc │ │ │ ├── aiobotocore │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── aiohttp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ └── middleware.cpython-36.pyc │ │ │ │ ├── client.py │ │ │ │ └── middleware.py │ │ │ ├── boto_utils.py │ │ │ ├── botocore │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── dbapi2.py │ │ │ ├── django │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── apps.cpython-36.pyc │ │ │ │ │ ├── conf.cpython-36.pyc │ │ │ │ │ ├── db.cpython-36.pyc │ │ │ │ │ ├── middleware.cpython-36.pyc │ │ │ │ │ └── templates.cpython-36.pyc │ │ │ │ ├── apps.py │ │ │ │ ├── conf.py │ │ │ │ ├── db.py │ │ │ │ ├── middleware.py │ │ │ │ └── templates.py │ │ │ ├── flask │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── middleware.cpython-36.pyc │ │ │ │ └── middleware.py │ │ │ ├── flask_sqlalchemy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── query.cpython-36.pyc │ │ │ │ └── query.py │ │ │ ├── httplib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── mysql │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── psycopg2 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── pymongo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── pynamodb │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ ├── resources │ │ │ │ └── aws_para_whitelist.json │ │ │ ├── sqlalchemy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── query.cpython-36.pyc │ │ │ │ ├── query.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── decerators.cpython-36.pyc │ │ │ │ │ └── decorators.cpython-36.pyc │ │ │ │ │ ├── decerators.py │ │ │ │ │ └── decorators.py │ │ │ ├── sqlite3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── patch.cpython-36.pyc │ │ │ │ └── patch.py │ │ │ └── util.py │ │ └── version.py │ │ ├── bin │ │ ├── __pycache__ │ │ │ ├── jp.cpython-36.pyc │ │ │ ├── rst2html.cpython-36.pyc │ │ │ ├── rst2html4.cpython-36.pyc │ │ │ ├── rst2html5.cpython-36.pyc │ │ │ ├── rst2latex.cpython-36.pyc │ │ │ ├── rst2man.cpython-36.pyc │ │ │ ├── rst2odt.cpython-36.pyc │ │ │ ├── rst2odt_prepstyles.cpython-36.pyc │ │ │ ├── rst2pseudoxml.cpython-36.pyc │ │ │ ├── rst2s5.cpython-36.pyc │ │ │ ├── rst2xetex.cpython-36.pyc │ │ │ ├── rst2xml.cpython-36.pyc │ │ │ └── rstpep2html.cpython-36.pyc │ │ ├── chardetect │ │ ├── futurize │ │ ├── jp.py │ │ ├── pasteurize │ │ ├── rst2html.py │ │ ├── rst2html4.py │ │ ├── rst2html5.py │ │ ├── rst2latex.py │ │ ├── rst2man.py │ │ ├── rst2odt.py │ │ ├── rst2odt_prepstyles.py │ │ ├── rst2pseudoxml.py │ │ ├── rst2s5.py │ │ ├── rst2xetex.py │ │ ├── rst2xml.py │ │ └── rstpep2html.py │ │ ├── botocore-1.12.9.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── botocore │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── args.cpython-36.pyc │ │ │ ├── auth.cpython-36.pyc │ │ │ ├── awsrequest.cpython-36.pyc │ │ │ ├── client.cpython-36.pyc │ │ │ ├── compat.cpython-36.pyc │ │ │ ├── config.cpython-36.pyc │ │ │ ├── configloader.cpython-36.pyc │ │ │ ├── credentials.cpython-36.pyc │ │ │ ├── endpoint.cpython-36.pyc │ │ │ ├── errorfactory.cpython-36.pyc │ │ │ ├── eventstream.cpython-36.pyc │ │ │ ├── exceptions.cpython-36.pyc │ │ │ ├── handlers.cpython-36.pyc │ │ │ ├── history.cpython-36.pyc │ │ │ ├── hooks.cpython-36.pyc │ │ │ ├── httpsession.cpython-36.pyc │ │ │ ├── loaders.cpython-36.pyc │ │ │ ├── model.cpython-36.pyc │ │ │ ├── paginate.cpython-36.pyc │ │ │ ├── parsers.cpython-36.pyc │ │ │ ├── regions.cpython-36.pyc │ │ │ ├── response.cpython-36.pyc │ │ │ ├── retryhandler.cpython-36.pyc │ │ │ ├── serialize.cpython-36.pyc │ │ │ ├── session.cpython-36.pyc │ │ │ ├── signers.cpython-36.pyc │ │ │ ├── stub.cpython-36.pyc │ │ │ ├── translate.cpython-36.pyc │ │ │ ├── utils.cpython-36.pyc │ │ │ ├── validate.cpython-36.pyc │ │ │ └── waiter.cpython-36.pyc │ │ ├── args.py │ │ ├── auth.py │ │ ├── awsrequest.py │ │ ├── cacert.pem │ │ ├── client.py │ │ ├── compat.py │ │ ├── config.py │ │ ├── configloader.py │ │ ├── credentials.py │ │ ├── data │ │ │ ├── _retry.json │ │ │ ├── acm-pca │ │ │ │ └── 2017-08-22 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── acm │ │ │ │ └── 2015-12-08 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── alexaforbusiness │ │ │ │ └── 2017-11-09 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── apigateway │ │ │ │ └── 2015-07-09 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── application-autoscaling │ │ │ │ └── 2016-02-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── appstream │ │ │ │ └── 2016-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── appsync │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── athena │ │ │ │ └── 2017-05-18 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── autoscaling-plans │ │ │ │ └── 2018-01-06 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── autoscaling │ │ │ │ └── 2011-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── batch │ │ │ │ └── 2016-08-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── budgets │ │ │ │ └── 2016-10-20 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ce │ │ │ │ └── 2017-10-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloud9 │ │ │ │ └── 2017-09-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── clouddirectory │ │ │ │ ├── 2016-05-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ │ └── 2017-01-11 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudformation │ │ │ │ └── 2010-05-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── cloudfront │ │ │ │ ├── 2014-05-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2014-10-21 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2014-11-06 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-04-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-07-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-09-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-01-13 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-01-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-08-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-08-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-09-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-09-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-11-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2017-03-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2017-10-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2018-06-18 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── cloudhsm │ │ │ │ └── 2014-05-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudhsmv2 │ │ │ │ └── 2017-04-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudsearch │ │ │ │ ├── 2011-02-01 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2013-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudsearchdomain │ │ │ │ └── 2013-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudtrail │ │ │ │ └── 2013-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudwatch │ │ │ │ └── 2010-08-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── codebuild │ │ │ │ └── 2016-10-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codecommit │ │ │ │ └── 2015-04-13 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codedeploy │ │ │ │ └── 2014-10-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── codepipeline │ │ │ │ └── 2015-07-09 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codestar │ │ │ │ └── 2017-04-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cognito-identity │ │ │ │ └── 2014-06-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cognito-idp │ │ │ │ └── 2016-04-18 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cognito-sync │ │ │ │ └── 2014-06-30 │ │ │ │ │ └── service-2.json │ │ │ ├── comprehend │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── config │ │ │ │ └── 2014-11-12 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── connect │ │ │ │ └── 2017-08-08 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cur │ │ │ │ └── 2017-01-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── datapipeline │ │ │ │ └── 2012-10-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dax │ │ │ │ └── 2017-04-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── devicefarm │ │ │ │ └── 2015-06-23 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── directconnect │ │ │ │ └── 2012-10-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── discovery │ │ │ │ └── 2015-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dlm │ │ │ │ └── 2018-01-12 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dms │ │ │ │ └── 2016-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ds │ │ │ │ └── 2015-04-16 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dynamodb │ │ │ │ └── 2012-08-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── dynamodbstreams │ │ │ │ └── 2012-08-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ec2 │ │ │ │ ├── 2014-09-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2014-10-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-03-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-04-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-10-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-04-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-09-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2016-11-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── ecr │ │ │ │ └── 2015-09-21 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ecs │ │ │ │ └── 2014-11-13 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── efs │ │ │ │ └── 2015-02-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── eks │ │ │ │ └── 2017-11-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── elasticache │ │ │ │ ├── 2014-09-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2015-02-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elasticbeanstalk │ │ │ │ └── 2010-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── elastictranscoder │ │ │ │ └── 2012-09-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elb │ │ │ │ └── 2012-06-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elbv2 │ │ │ │ └── 2015-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── emr │ │ │ │ └── 2009-03-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── endpoints.json │ │ │ ├── es │ │ │ │ └── 2015-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── events │ │ │ │ ├── 2014-02-03 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2015-10-07 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── firehose │ │ │ │ └── 2015-08-04 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── fms │ │ │ │ └── 2018-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── gamelift │ │ │ │ └── 2015-10-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── glacier │ │ │ │ └── 2012-06-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── glue │ │ │ │ └── 2017-03-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── greengrass │ │ │ │ └── 2017-06-07 │ │ │ │ │ └── service-2.json │ │ │ ├── guardduty │ │ │ │ └── 2017-11-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── health │ │ │ │ └── 2016-08-04 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iam │ │ │ │ └── 2010-05-08 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── importexport │ │ │ │ └── 2010-06-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── inspector │ │ │ │ ├── 2015-08-18 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2016-02-16 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot-data │ │ │ │ └── 2015-05-28 │ │ │ │ │ └── service-2.json │ │ │ ├── iot-jobs-data │ │ │ │ └── 2017-09-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot │ │ │ │ └── 2015-05-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot1click-devices │ │ │ │ └── 2018-05-14 │ │ │ │ │ └── service-2.json │ │ │ ├── iot1click-projects │ │ │ │ └── 2018-05-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotanalytics │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesis-video-archived-media │ │ │ │ └── 2017-09-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesis-video-media │ │ │ │ └── 2017-09-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesis │ │ │ │ └── 2013-12-02 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── kinesisanalytics │ │ │ │ └── 2015-08-14 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesisvideo │ │ │ │ └── 2017-09-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kms │ │ │ │ └── 2014-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lambda │ │ │ │ ├── 2014-11-11 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2015-03-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lex-models │ │ │ │ └── 2017-04-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lex-runtime │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lightsail │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── logs │ │ │ │ └── 2014-03-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── machinelearning │ │ │ │ └── 2014-12-12 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── macie │ │ │ │ └── 2017-12-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── marketplace-entitlement │ │ │ │ └── 2017-01-11 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── marketplacecommerceanalytics │ │ │ │ └── 2015-07-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediaconvert │ │ │ │ └── 2017-08-29 │ │ │ │ │ └── service-2.json │ │ │ ├── medialive │ │ │ │ └── 2017-10-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediapackage │ │ │ │ └── 2017-10-12 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediastore-data │ │ │ │ └── 2017-09-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediastore │ │ │ │ └── 2017-09-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediatailor │ │ │ │ └── 2018-04-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── meteringmarketplace │ │ │ │ └── 2016-01-14 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mgh │ │ │ │ └── 2017-05-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mobile │ │ │ │ └── 2017-07-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mq │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mturk │ │ │ │ └── 2017-01-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── neptune │ │ │ │ └── 2014-10-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── opsworks │ │ │ │ └── 2013-02-18 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── opsworkscm │ │ │ │ └── 2016-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── organizations │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── pi │ │ │ │ └── 2018-02-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── pinpoint │ │ │ │ └── 2016-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── polly │ │ │ │ └── 2016-06-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── pricing │ │ │ │ └── 2017-10-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── rds │ │ │ │ ├── 2014-09-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2014-10-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── redshift │ │ │ │ └── 2012-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── rekognition │ │ │ │ └── 2016-06-27 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── resource-groups │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── resourcegroupstaggingapi │ │ │ │ └── 2017-01-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── route53 │ │ │ │ └── 2013-04-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── route53domains │ │ │ │ └── 2014-05-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── s3 │ │ │ │ └── 2006-03-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── sagemaker-runtime │ │ │ │ └── 2017-05-13 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sagemaker │ │ │ │ └── 2017-07-24 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── sdb │ │ │ │ └── 2009-04-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── secretsmanager │ │ │ │ └── 2017-10-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── service-2.sdk-extras.json │ │ │ ├── serverlessrepo │ │ │ │ └── 2017-09-08 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── servicecatalog │ │ │ │ └── 2015-12-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── servicediscovery │ │ │ │ └── 2017-03-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ses │ │ │ │ └── 2010-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── shield │ │ │ │ └── 2016-06-02 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── signer │ │ │ │ └── 2017-08-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── sms │ │ │ │ └── 2016-10-24 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── snowball │ │ │ │ └── 2016-06-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sns │ │ │ │ └── 2010-03-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sqs │ │ │ │ └── 2012-11-05 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ssm │ │ │ │ └── 2014-11-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── stepfunctions │ │ │ │ └── 2016-11-23 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── storagegateway │ │ │ │ └── 2013-06-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sts │ │ │ │ └── 2011-06-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── support │ │ │ │ └── 2013-04-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── swf │ │ │ │ └── 2012-01-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── transcribe │ │ │ │ └── 2017-10-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── translate │ │ │ │ └── 2017-07-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── waf-regional │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── waf │ │ │ │ └── 2015-08-24 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workdocs │ │ │ │ └── 2016-05-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workmail │ │ │ │ └── 2017-10-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workspaces │ │ │ │ └── 2015-04-08 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ └── xray │ │ │ │ └── 2016-04-12 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── docs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ ├── docstring.cpython-36.pyc │ │ │ │ ├── example.cpython-36.pyc │ │ │ │ ├── method.cpython-36.pyc │ │ │ │ ├── paginator.cpython-36.pyc │ │ │ │ ├── params.cpython-36.pyc │ │ │ │ ├── service.cpython-36.pyc │ │ │ │ ├── shape.cpython-36.pyc │ │ │ │ ├── sharedexample.cpython-36.pyc │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ └── waiter.cpython-36.pyc │ │ │ ├── bcdoc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── docevents.cpython-36.pyc │ │ │ │ │ ├── docstringparser.cpython-36.pyc │ │ │ │ │ ├── restdoc.cpython-36.pyc │ │ │ │ │ ├── style.cpython-36.pyc │ │ │ │ │ └── textwriter.cpython-36.pyc │ │ │ │ ├── docevents.py │ │ │ │ ├── docstringparser.py │ │ │ │ ├── restdoc.py │ │ │ │ ├── style.py │ │ │ │ └── textwriter.py │ │ │ ├── client.py │ │ │ ├── docstring.py │ │ │ ├── example.py │ │ │ ├── method.py │ │ │ ├── paginator.py │ │ │ ├── params.py │ │ │ ├── service.py │ │ │ ├── shape.py │ │ │ ├── sharedexample.py │ │ │ ├── utils.py │ │ │ └── waiter.py │ │ ├── endpoint.py │ │ ├── errorfactory.py │ │ ├── eventstream.py │ │ ├── exceptions.py │ │ ├── handlers.py │ │ ├── history.py │ │ ├── hooks.py │ │ ├── httpsession.py │ │ ├── loaders.py │ │ ├── model.py │ │ ├── paginate.py │ │ ├── parsers.py │ │ ├── regions.py │ │ ├── response.py │ │ ├── retryhandler.py │ │ ├── serialize.py │ │ ├── session.py │ │ ├── signers.py │ │ ├── stub.py │ │ ├── translate.py │ │ ├── utils.py │ │ ├── validate.py │ │ ├── vendored │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── six.cpython-36.pyc │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── adapters.cpython-36.pyc │ │ │ │ │ ├── api.cpython-36.pyc │ │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ │ ├── certs.cpython-36.pyc │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ │ ├── sessions.cpython-36.pyc │ │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ │ ├── structures.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── cacert.pem │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ ├── chardet │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ │ │ │ ├── chardetect.cpython-36.pyc │ │ │ │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ │ │ │ └── utf8prober.cpython-36.pyc │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ └── urllib3 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ └── response.cpython-36.pyc │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ │ │ └── pyopenssl.cpython-36.pyc │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ └── pyopenssl.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ │ │ └── url.cpython-36.pyc │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ └── url.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ └── six.py │ │ └── waiter.py │ │ ├── certifi-2018.8.24.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __main__.cpython-36.pyc │ │ │ └── core.cpython-36.pyc │ │ ├── cacert.pem │ │ └── core.py │ │ ├── chardet-3.0.4.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── chardet │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── big5freq.cpython-36.pyc │ │ │ ├── big5prober.cpython-36.pyc │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ ├── compat.cpython-36.pyc │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ ├── enums.cpython-36.pyc │ │ │ ├── escprober.cpython-36.pyc │ │ │ ├── escsm.cpython-36.pyc │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ ├── langturkishmodel.cpython-36.pyc │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ ├── utf8prober.cpython-36.pyc │ │ │ └── version.cpython-36.pyc │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── chardetect.cpython-36.pyc │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── cp949prober.py │ │ ├── enums.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langcyrillicmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf8prober.py │ │ └── version.py │ │ ├── dateutil │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── _common.cpython-36.pyc │ │ │ ├── _version.cpython-36.pyc │ │ │ ├── easter.cpython-36.pyc │ │ │ ├── relativedelta.cpython-36.pyc │ │ │ ├── rrule.cpython-36.pyc │ │ │ ├── tzwin.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── _common.py │ │ ├── _version.py │ │ ├── easter.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _parser.cpython-36.pyc │ │ │ │ └── isoparser.cpython-36.pyc │ │ │ ├── _parser.py │ │ │ └── isoparser.py │ │ ├── relativedelta.py │ │ ├── rrule.py │ │ ├── tz │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _common.cpython-36.pyc │ │ │ │ ├── _factories.cpython-36.pyc │ │ │ │ ├── tz.cpython-36.pyc │ │ │ │ └── win.cpython-36.pyc │ │ │ ├── _common.py │ │ │ ├── _factories.py │ │ │ ├── tz.py │ │ │ └── win.py │ │ ├── tzwin.py │ │ ├── utils.py │ │ └── zoneinfo │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── rebuild.cpython-36.pyc │ │ │ ├── dateutil-zoneinfo.tar.gz │ │ │ └── rebuild.py │ │ ├── docutils-0.14.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── docutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── _compat.cpython-36.pyc │ │ │ ├── core.cpython-36.pyc │ │ │ ├── examples.cpython-36.pyc │ │ │ ├── frontend.cpython-36.pyc │ │ │ ├── io.cpython-36.pyc │ │ │ ├── nodes.cpython-36.pyc │ │ │ └── statemachine.cpython-36.pyc │ │ ├── _compat.py │ │ ├── core.py │ │ ├── examples.py │ │ ├── frontend.py │ │ ├── io.py │ │ ├── languages │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── af.cpython-36.pyc │ │ │ │ ├── ca.cpython-36.pyc │ │ │ │ ├── cs.cpython-36.pyc │ │ │ │ ├── da.cpython-36.pyc │ │ │ │ ├── de.cpython-36.pyc │ │ │ │ ├── en.cpython-36.pyc │ │ │ │ ├── eo.cpython-36.pyc │ │ │ │ ├── es.cpython-36.pyc │ │ │ │ ├── fa.cpython-36.pyc │ │ │ │ ├── fi.cpython-36.pyc │ │ │ │ ├── fr.cpython-36.pyc │ │ │ │ ├── gl.cpython-36.pyc │ │ │ │ ├── he.cpython-36.pyc │ │ │ │ ├── it.cpython-36.pyc │ │ │ │ ├── ja.cpython-36.pyc │ │ │ │ ├── lt.cpython-36.pyc │ │ │ │ ├── lv.cpython-36.pyc │ │ │ │ ├── nl.cpython-36.pyc │ │ │ │ ├── pl.cpython-36.pyc │ │ │ │ ├── pt_br.cpython-36.pyc │ │ │ │ ├── ru.cpython-36.pyc │ │ │ │ ├── sk.cpython-36.pyc │ │ │ │ ├── sv.cpython-36.pyc │ │ │ │ ├── zh_cn.cpython-36.pyc │ │ │ │ └── zh_tw.cpython-36.pyc │ │ │ ├── af.py │ │ │ ├── ca.py │ │ │ ├── cs.py │ │ │ ├── da.py │ │ │ ├── de.py │ │ │ ├── en.py │ │ │ ├── eo.py │ │ │ ├── es.py │ │ │ ├── fa.py │ │ │ ├── fi.py │ │ │ ├── fr.py │ │ │ ├── gl.py │ │ │ ├── he.py │ │ │ ├── it.py │ │ │ ├── ja.py │ │ │ ├── lt.py │ │ │ ├── lv.py │ │ │ ├── nl.py │ │ │ ├── pl.py │ │ │ ├── pt_br.py │ │ │ ├── ru.py │ │ │ ├── sk.py │ │ │ ├── sv.py │ │ │ ├── zh_cn.py │ │ │ └── zh_tw.py │ │ ├── nodes.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── null.cpython-36.pyc │ │ │ ├── null.py │ │ │ └── rst │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── roles.cpython-36.pyc │ │ │ │ ├── states.cpython-36.pyc │ │ │ │ └── tableparser.cpython-36.pyc │ │ │ │ ├── directives │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── admonitions.cpython-36.pyc │ │ │ │ │ ├── body.cpython-36.pyc │ │ │ │ │ ├── html.cpython-36.pyc │ │ │ │ │ ├── images.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ ├── parts.cpython-36.pyc │ │ │ │ │ ├── references.cpython-36.pyc │ │ │ │ │ └── tables.cpython-36.pyc │ │ │ │ ├── admonitions.py │ │ │ │ ├── body.py │ │ │ │ ├── html.py │ │ │ │ ├── images.py │ │ │ │ ├── misc.py │ │ │ │ ├── parts.py │ │ │ │ ├── references.py │ │ │ │ └── tables.py │ │ │ │ ├── include │ │ │ │ ├── README.txt │ │ │ │ ├── isoamsa.txt │ │ │ │ ├── isoamsb.txt │ │ │ │ ├── isoamsc.txt │ │ │ │ ├── isoamsn.txt │ │ │ │ ├── isoamso.txt │ │ │ │ ├── isoamsr.txt │ │ │ │ ├── isobox.txt │ │ │ │ ├── isocyr1.txt │ │ │ │ ├── isocyr2.txt │ │ │ │ ├── isodia.txt │ │ │ │ ├── isogrk1.txt │ │ │ │ ├── isogrk2.txt │ │ │ │ ├── isogrk3.txt │ │ │ │ ├── isogrk4-wide.txt │ │ │ │ ├── isogrk4.txt │ │ │ │ ├── isolat1.txt │ │ │ │ ├── isolat2.txt │ │ │ │ ├── isomfrk-wide.txt │ │ │ │ ├── isomfrk.txt │ │ │ │ ├── isomopf-wide.txt │ │ │ │ ├── isomopf.txt │ │ │ │ ├── isomscr-wide.txt │ │ │ │ ├── isomscr.txt │ │ │ │ ├── isonum.txt │ │ │ │ ├── isopub.txt │ │ │ │ ├── isotech.txt │ │ │ │ ├── mmlalias.txt │ │ │ │ ├── mmlextra-wide.txt │ │ │ │ ├── mmlextra.txt │ │ │ │ ├── s5defs.txt │ │ │ │ ├── xhtml1-lat1.txt │ │ │ │ ├── xhtml1-special.txt │ │ │ │ └── xhtml1-symbol.txt │ │ │ │ ├── languages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── af.cpython-36.pyc │ │ │ │ │ ├── ca.cpython-36.pyc │ │ │ │ │ ├── cs.cpython-36.pyc │ │ │ │ │ ├── da.cpython-36.pyc │ │ │ │ │ ├── de.cpython-36.pyc │ │ │ │ │ ├── en.cpython-36.pyc │ │ │ │ │ ├── eo.cpython-36.pyc │ │ │ │ │ ├── es.cpython-36.pyc │ │ │ │ │ ├── fa.cpython-36.pyc │ │ │ │ │ ├── fi.cpython-36.pyc │ │ │ │ │ ├── fr.cpython-36.pyc │ │ │ │ │ ├── gl.cpython-36.pyc │ │ │ │ │ ├── he.cpython-36.pyc │ │ │ │ │ ├── it.cpython-36.pyc │ │ │ │ │ ├── ja.cpython-36.pyc │ │ │ │ │ ├── lt.cpython-36.pyc │ │ │ │ │ ├── lv.cpython-36.pyc │ │ │ │ │ ├── nl.cpython-36.pyc │ │ │ │ │ ├── pl.cpython-36.pyc │ │ │ │ │ ├── pt_br.cpython-36.pyc │ │ │ │ │ ├── ru.cpython-36.pyc │ │ │ │ │ ├── sk.cpython-36.pyc │ │ │ │ │ ├── sv.cpython-36.pyc │ │ │ │ │ ├── zh_cn.cpython-36.pyc │ │ │ │ │ └── zh_tw.cpython-36.pyc │ │ │ │ ├── af.py │ │ │ │ ├── ca.py │ │ │ │ ├── cs.py │ │ │ │ ├── da.py │ │ │ │ ├── de.py │ │ │ │ ├── en.py │ │ │ │ ├── eo.py │ │ │ │ ├── es.py │ │ │ │ ├── fa.py │ │ │ │ ├── fi.py │ │ │ │ ├── fr.py │ │ │ │ ├── gl.py │ │ │ │ ├── he.py │ │ │ │ ├── it.py │ │ │ │ ├── ja.py │ │ │ │ ├── lt.py │ │ │ │ ├── lv.py │ │ │ │ ├── nl.py │ │ │ │ ├── pl.py │ │ │ │ ├── pt_br.py │ │ │ │ ├── ru.py │ │ │ │ ├── sk.py │ │ │ │ ├── sv.py │ │ │ │ ├── zh_cn.py │ │ │ │ └── zh_tw.py │ │ │ │ ├── roles.py │ │ │ │ ├── states.py │ │ │ │ └── tableparser.py │ │ ├── readers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── doctree.cpython-36.pyc │ │ │ │ ├── pep.cpython-36.pyc │ │ │ │ └── standalone.cpython-36.pyc │ │ │ ├── doctree.py │ │ │ ├── pep.py │ │ │ └── standalone.py │ │ ├── statemachine.py │ │ ├── transforms │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── components.cpython-36.pyc │ │ │ │ ├── frontmatter.cpython-36.pyc │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ ├── parts.cpython-36.pyc │ │ │ │ ├── peps.cpython-36.pyc │ │ │ │ ├── references.cpython-36.pyc │ │ │ │ ├── universal.cpython-36.pyc │ │ │ │ └── writer_aux.cpython-36.pyc │ │ │ ├── components.py │ │ │ ├── frontmatter.py │ │ │ ├── misc.py │ │ │ ├── parts.py │ │ │ ├── peps.py │ │ │ ├── references.py │ │ │ ├── universal.py │ │ │ └── writer_aux.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── code_analyzer.cpython-36.pyc │ │ │ │ ├── error_reporting.cpython-36.pyc │ │ │ │ ├── punctuation_chars.cpython-36.pyc │ │ │ │ ├── roman.cpython-36.pyc │ │ │ │ ├── smartquotes.cpython-36.pyc │ │ │ │ └── urischemes.cpython-36.pyc │ │ │ ├── code_analyzer.py │ │ │ ├── error_reporting.py │ │ │ ├── math │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── latex2mathml.cpython-36.pyc │ │ │ │ │ ├── math2html.cpython-36.pyc │ │ │ │ │ ├── tex2mathml_extern.cpython-36.pyc │ │ │ │ │ ├── tex2unichar.cpython-36.pyc │ │ │ │ │ └── unichar2tex.cpython-36.pyc │ │ │ │ ├── latex2mathml.py │ │ │ │ ├── math2html.py │ │ │ │ ├── tex2mathml_extern.py │ │ │ │ ├── tex2unichar.py │ │ │ │ └── unichar2tex.py │ │ │ ├── punctuation_chars.py │ │ │ ├── roman.py │ │ │ ├── smartquotes.py │ │ │ └── urischemes.py │ │ └── writers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── _html_base.cpython-36.pyc │ │ │ ├── docutils_xml.cpython-36.pyc │ │ │ ├── manpage.cpython-36.pyc │ │ │ ├── null.cpython-36.pyc │ │ │ └── pseudoxml.cpython-36.pyc │ │ │ ├── _html_base.py │ │ │ ├── docutils_xml.py │ │ │ ├── html4css1 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── html4css1.css │ │ │ └── template.txt │ │ │ ├── html5_polyglot │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── math.css │ │ │ ├── minimal.css │ │ │ ├── plain.css │ │ │ └── template.txt │ │ │ ├── latex2e │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── default.tex │ │ │ ├── titlepage.tex │ │ │ └── xelatex.tex │ │ │ ├── manpage.py │ │ │ ├── null.py │ │ │ ├── odf_odt │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── pygmentsformatter.cpython-36.pyc │ │ │ ├── pygmentsformatter.py │ │ │ └── styles.odt │ │ │ ├── pep_html │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── pep.css │ │ │ └── template.txt │ │ │ ├── pseudoxml.py │ │ │ ├── s5_html │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── themes │ │ │ │ ├── README.txt │ │ │ │ ├── big-black │ │ │ │ ├── __base__ │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ │ ├── big-white │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ │ ├── default │ │ │ │ ├── blank.gif │ │ │ │ ├── framing.css │ │ │ │ ├── iepngfix.htc │ │ │ │ ├── opera.css │ │ │ │ ├── outline.css │ │ │ │ ├── pretty.css │ │ │ │ ├── print.css │ │ │ │ ├── s5-core.css │ │ │ │ ├── slides.css │ │ │ │ └── slides.js │ │ │ │ ├── medium-black │ │ │ │ ├── __base__ │ │ │ │ └── pretty.css │ │ │ │ ├── medium-white │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ │ ├── small-black │ │ │ │ ├── __base__ │ │ │ │ └── pretty.css │ │ │ │ └── small-white │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ └── xetex │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── future-0.16.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── future │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── backports │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _markupbase.cpython-36.pyc │ │ │ │ ├── datetime.cpython-36.pyc │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ ├── socket.cpython-36.pyc │ │ │ │ ├── socketserver.cpython-36.pyc │ │ │ │ └── total_ordering.cpython-36.pyc │ │ │ ├── _markupbase.py │ │ │ ├── datetime.py │ │ │ ├── email │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _encoded_words.cpython-36.pyc │ │ │ │ │ ├── _header_value_parser.cpython-36.pyc │ │ │ │ │ ├── _parseaddr.cpython-36.pyc │ │ │ │ │ ├── _policybase.cpython-36.pyc │ │ │ │ │ ├── base64mime.cpython-36.pyc │ │ │ │ │ ├── charset.cpython-36.pyc │ │ │ │ │ ├── encoders.cpython-36.pyc │ │ │ │ │ ├── errors.cpython-36.pyc │ │ │ │ │ ├── feedparser.cpython-36.pyc │ │ │ │ │ ├── generator.cpython-36.pyc │ │ │ │ │ ├── header.cpython-36.pyc │ │ │ │ │ ├── headerregistry.cpython-36.pyc │ │ │ │ │ ├── iterators.cpython-36.pyc │ │ │ │ │ ├── message.cpython-36.pyc │ │ │ │ │ ├── parser.cpython-36.pyc │ │ │ │ │ ├── policy.cpython-36.pyc │ │ │ │ │ ├── quoprimime.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── _encoded_words.py │ │ │ │ ├── _header_value_parser.py │ │ │ │ ├── _parseaddr.py │ │ │ │ ├── _policybase.py │ │ │ │ ├── base64mime.py │ │ │ │ ├── charset.py │ │ │ │ ├── encoders.py │ │ │ │ ├── errors.py │ │ │ │ ├── feedparser.py │ │ │ │ ├── generator.py │ │ │ │ ├── header.py │ │ │ │ ├── headerregistry.py │ │ │ │ ├── iterators.py │ │ │ │ ├── message.py │ │ │ │ ├── mime │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── application.cpython-36.pyc │ │ │ │ │ │ ├── audio.cpython-36.pyc │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ ├── image.cpython-36.pyc │ │ │ │ │ │ ├── message.cpython-36.pyc │ │ │ │ │ │ ├── multipart.cpython-36.pyc │ │ │ │ │ │ ├── nonmultipart.cpython-36.pyc │ │ │ │ │ │ └── text.cpython-36.pyc │ │ │ │ │ ├── application.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── image.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── multipart.py │ │ │ │ │ ├── nonmultipart.py │ │ │ │ │ └── text.py │ │ │ │ ├── parser.py │ │ │ │ ├── policy.py │ │ │ │ ├── quoprimime.py │ │ │ │ └── utils.py │ │ │ ├── html │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── entities.cpython-36.pyc │ │ │ │ │ └── parser.cpython-36.pyc │ │ │ │ ├── entities.py │ │ │ │ └── parser.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ ├── cookiejar.cpython-36.pyc │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ └── server.cpython-36.pyc │ │ │ │ ├── client.py │ │ │ │ ├── cookiejar.py │ │ │ │ ├── cookies.py │ │ │ │ └── server.py │ │ │ ├── misc.py │ │ │ ├── socket.py │ │ │ ├── socketserver.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── pystone.cpython-36.pyc │ │ │ │ │ ├── ssl_servers.cpython-36.pyc │ │ │ │ │ └── support.cpython-36.pyc │ │ │ │ ├── badcert.pem │ │ │ │ ├── badkey.pem │ │ │ │ ├── dh512.pem │ │ │ │ ├── https_svn_python_org_root.pem │ │ │ │ ├── keycert.passwd.pem │ │ │ │ ├── keycert.pem │ │ │ │ ├── keycert2.pem │ │ │ │ ├── nokia.pem │ │ │ │ ├── nullbytecert.pem │ │ │ │ ├── nullcert.pem │ │ │ │ ├── pystone.py │ │ │ │ ├── sha256.pem │ │ │ │ ├── ssl_cert.pem │ │ │ │ ├── ssl_key.passwd.pem │ │ │ │ ├── ssl_key.pem │ │ │ │ ├── ssl_servers.py │ │ │ │ └── support.py │ │ │ ├── total_ordering.py │ │ │ ├── urllib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── error.cpython-36.pyc │ │ │ │ │ ├── parse.cpython-36.pyc │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ └── robotparser.cpython-36.pyc │ │ │ │ ├── error.py │ │ │ │ ├── parse.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── robotparser.py │ │ │ └── xmlrpc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ └── server.cpython-36.pyc │ │ │ │ ├── client.py │ │ │ │ └── server.py │ │ ├── builtins │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── disabled.cpython-36.pyc │ │ │ │ ├── iterators.cpython-36.pyc │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ ├── newnext.cpython-36.pyc │ │ │ │ ├── newround.cpython-36.pyc │ │ │ │ └── newsuper.cpython-36.pyc │ │ │ ├── disabled.py │ │ │ ├── iterators.py │ │ │ ├── misc.py │ │ │ ├── newnext.py │ │ │ ├── newround.py │ │ │ └── newsuper.py │ │ ├── moves │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _dummy_thread.cpython-36.pyc │ │ │ │ ├── _markupbase.cpython-36.pyc │ │ │ │ ├── _thread.cpython-36.pyc │ │ │ │ ├── builtins.cpython-36.pyc │ │ │ │ ├── collections.cpython-36.pyc │ │ │ │ ├── configparser.cpython-36.pyc │ │ │ │ ├── copyreg.cpython-36.pyc │ │ │ │ ├── itertools.cpython-36.pyc │ │ │ │ ├── pickle.cpython-36.pyc │ │ │ │ ├── queue.cpython-36.pyc │ │ │ │ ├── reprlib.cpython-36.pyc │ │ │ │ ├── socketserver.cpython-36.pyc │ │ │ │ ├── subprocess.cpython-36.pyc │ │ │ │ ├── sys.cpython-36.pyc │ │ │ │ └── winreg.cpython-36.pyc │ │ │ ├── _dummy_thread.py │ │ │ ├── _markupbase.py │ │ │ ├── _thread.py │ │ │ ├── builtins.py │ │ │ ├── collections.py │ │ │ ├── configparser.py │ │ │ ├── copyreg.py │ │ │ ├── dbm │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dumb.cpython-36.pyc │ │ │ │ │ ├── gnu.cpython-36.pyc │ │ │ │ │ └── ndbm.cpython-36.pyc │ │ │ │ ├── dumb.py │ │ │ │ ├── gnu.py │ │ │ │ └── ndbm.py │ │ │ ├── html │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── entities.cpython-36.pyc │ │ │ │ │ └── parser.cpython-36.pyc │ │ │ │ ├── entities.py │ │ │ │ └── parser.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ │ ├── cookiejar.cpython-36.pyc │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ └── server.cpython-36.pyc │ │ │ │ ├── client.py │ │ │ │ ├── cookiejar.py │ │ │ │ ├── cookies.py │ │ │ │ └── server.py │ │ │ ├── itertools.py │ │ │ ├── pickle.py │ │ │ ├── queue.py │ │ │ ├── reprlib.py │ │ │ ├── socketserver.py │ │ │ ├── subprocess.py │ │ │ ├── sys.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── support.cpython-36.pyc │ │ │ │ └── support.py │ │ │ ├── tkinter │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── colorchooser.cpython-36.pyc │ │ │ │ │ ├── commondialog.cpython-36.pyc │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ ├── dialog.cpython-36.pyc │ │ │ │ │ ├── dnd.cpython-36.pyc │ │ │ │ │ ├── filedialog.cpython-36.pyc │ │ │ │ │ ├── font.cpython-36.pyc │ │ │ │ │ ├── messagebox.cpython-36.pyc │ │ │ │ │ ├── scrolledtext.cpython-36.pyc │ │ │ │ │ ├── simpledialog.cpython-36.pyc │ │ │ │ │ ├── tix.cpython-36.pyc │ │ │ │ │ └── ttk.cpython-36.pyc │ │ │ │ ├── colorchooser.py │ │ │ │ ├── commondialog.py │ │ │ │ ├── constants.py │ │ │ │ ├── dialog.py │ │ │ │ ├── dnd.py │ │ │ │ ├── filedialog.py │ │ │ │ ├── font.py │ │ │ │ ├── messagebox.py │ │ │ │ ├── scrolledtext.py │ │ │ │ ├── simpledialog.py │ │ │ │ ├── tix.py │ │ │ │ └── ttk.py │ │ │ ├── urllib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── error.cpython-36.pyc │ │ │ │ │ ├── parse.cpython-36.pyc │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ └── robotparser.cpython-36.pyc │ │ │ │ ├── error.py │ │ │ │ ├── parse.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── robotparser.py │ │ │ ├── winreg.py │ │ │ └── xmlrpc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── client.cpython-36.pyc │ │ │ │ └── server.cpython-36.pyc │ │ │ │ ├── client.py │ │ │ │ └── server.py │ │ ├── standard_library │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── base.cpython-36.pyc │ │ │ └── base.py │ │ ├── types │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── newbytes.cpython-36.pyc │ │ │ │ ├── newdict.cpython-36.pyc │ │ │ │ ├── newint.cpython-36.pyc │ │ │ │ ├── newlist.cpython-36.pyc │ │ │ │ ├── newmemoryview.cpython-36.pyc │ │ │ │ ├── newobject.cpython-36.pyc │ │ │ │ ├── newopen.cpython-36.pyc │ │ │ │ ├── newrange.cpython-36.pyc │ │ │ │ └── newstr.cpython-36.pyc │ │ │ ├── newbytes.py │ │ │ ├── newdict.py │ │ │ ├── newint.py │ │ │ ├── newlist.py │ │ │ ├── newmemoryview.py │ │ │ ├── newobject.py │ │ │ ├── newopen.py │ │ │ ├── newrange.py │ │ │ └── newstr.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── surrogateescape.cpython-36.pyc │ │ │ └── surrogateescape.py │ │ ├── idna-2.7.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── codec.cpython-36.pyc │ │ │ ├── compat.cpython-36.pyc │ │ │ ├── core.cpython-36.pyc │ │ │ ├── idnadata.cpython-36.pyc │ │ │ ├── intranges.cpython-36.pyc │ │ │ ├── package_data.cpython-36.pyc │ │ │ └── uts46data.cpython-36.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── jmespath-0.9.3.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ ├── pbr.json │ │ └── top_level.txt │ │ ├── jmespath │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── ast.cpython-36.pyc │ │ │ ├── compat.cpython-36.pyc │ │ │ ├── exceptions.cpython-36.pyc │ │ │ ├── functions.cpython-36.pyc │ │ │ ├── lexer.cpython-36.pyc │ │ │ ├── parser.cpython-36.pyc │ │ │ └── visitor.cpython-36.pyc │ │ ├── ast.py │ │ ├── compat.py │ │ ├── exceptions.py │ │ ├── functions.py │ │ ├── lexer.py │ │ ├── parser.py │ │ └── visitor.py │ │ ├── jsonpickle-1.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── jsonpickle │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── backend.cpython-36.pyc │ │ │ ├── compat.cpython-36.pyc │ │ │ ├── handlers.cpython-36.pyc │ │ │ ├── pickler.cpython-36.pyc │ │ │ ├── tags.cpython-36.pyc │ │ │ ├── unpickler.cpython-36.pyc │ │ │ ├── util.cpython-36.pyc │ │ │ └── version.cpython-36.pyc │ │ ├── backend.py │ │ ├── compat.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── numpy.cpython-36.pyc │ │ │ │ └── pandas.cpython-36.pyc │ │ │ ├── numpy.py │ │ │ └── pandas.py │ │ ├── handlers.py │ │ ├── pickler.py │ │ ├── tags.py │ │ ├── unpickler.py │ │ ├── util.py │ │ └── version.py │ │ ├── libfuturize │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fixer_util.cpython-36.pyc │ │ │ └── main.cpython-36.pyc │ │ ├── fixer_util.py │ │ ├── fixes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fix_UserDict.cpython-36.pyc │ │ │ │ ├── fix_absolute_import.cpython-36.pyc │ │ │ │ ├── fix_add__future__imports_except_unicode_literals.cpython-36.pyc │ │ │ │ ├── fix_basestring.cpython-36.pyc │ │ │ │ ├── fix_bytes.cpython-36.pyc │ │ │ │ ├── fix_cmp.cpython-36.pyc │ │ │ │ ├── fix_division.cpython-36.pyc │ │ │ │ ├── fix_division_safe.cpython-36.pyc │ │ │ │ ├── fix_execfile.cpython-36.pyc │ │ │ │ ├── fix_future_builtins.cpython-36.pyc │ │ │ │ ├── fix_future_standard_library.cpython-36.pyc │ │ │ │ ├── fix_future_standard_library_urllib.cpython-36.pyc │ │ │ │ ├── fix_metaclass.cpython-36.pyc │ │ │ │ ├── fix_next_call.cpython-36.pyc │ │ │ │ ├── fix_object.cpython-36.pyc │ │ │ │ ├── fix_oldstr_wrap.cpython-36.pyc │ │ │ │ ├── fix_order___future__imports.cpython-36.pyc │ │ │ │ ├── fix_print.cpython-36.pyc │ │ │ │ ├── fix_print_with_import.cpython-36.pyc │ │ │ │ ├── fix_raise.cpython-36.pyc │ │ │ │ ├── fix_remove_old__future__imports.cpython-36.pyc │ │ │ │ ├── fix_unicode_keep_u.cpython-36.pyc │ │ │ │ ├── fix_unicode_literals_import.cpython-36.pyc │ │ │ │ └── fix_xrange_with_import.cpython-36.pyc │ │ │ ├── fix_UserDict.py │ │ │ ├── fix_absolute_import.py │ │ │ ├── fix_add__future__imports_except_unicode_literals.py │ │ │ ├── fix_basestring.py │ │ │ ├── fix_bytes.py │ │ │ ├── fix_cmp.py │ │ │ ├── fix_division.py │ │ │ ├── fix_division_safe.py │ │ │ ├── fix_execfile.py │ │ │ ├── fix_future_builtins.py │ │ │ ├── fix_future_standard_library.py │ │ │ ├── fix_future_standard_library_urllib.py │ │ │ ├── fix_metaclass.py │ │ │ ├── fix_next_call.py │ │ │ ├── fix_object.py │ │ │ ├── fix_oldstr_wrap.py │ │ │ ├── fix_order___future__imports.py │ │ │ ├── fix_print.py │ │ │ ├── fix_print_with_import.py │ │ │ ├── fix_raise.py │ │ │ ├── fix_remove_old__future__imports.py │ │ │ ├── fix_unicode_keep_u.py │ │ │ ├── fix_unicode_literals_import.py │ │ │ └── fix_xrange_with_import.py │ │ └── main.py │ │ ├── libpasteurize │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── main.cpython-36.pyc │ │ ├── fixes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── feature_base.cpython-36.pyc │ │ │ │ ├── fix_add_all__future__imports.cpython-36.pyc │ │ │ │ ├── fix_add_all_future_builtins.cpython-36.pyc │ │ │ │ ├── fix_add_future_standard_library_import.cpython-36.pyc │ │ │ │ ├── fix_annotations.cpython-36.pyc │ │ │ │ ├── fix_division.cpython-36.pyc │ │ │ │ ├── fix_features.cpython-36.pyc │ │ │ │ ├── fix_fullargspec.cpython-36.pyc │ │ │ │ ├── fix_future_builtins.cpython-36.pyc │ │ │ │ ├── fix_getcwd.cpython-36.pyc │ │ │ │ ├── fix_imports.cpython-36.pyc │ │ │ │ ├── fix_imports2.cpython-36.pyc │ │ │ │ ├── fix_kwargs.cpython-36.pyc │ │ │ │ ├── fix_memoryview.cpython-36.pyc │ │ │ │ ├── fix_metaclass.cpython-36.pyc │ │ │ │ ├── fix_newstyle.cpython-36.pyc │ │ │ │ ├── fix_next.cpython-36.pyc │ │ │ │ ├── fix_printfunction.cpython-36.pyc │ │ │ │ ├── fix_raise.cpython-36.pyc │ │ │ │ ├── fix_raise_.cpython-36.pyc │ │ │ │ ├── fix_throw.cpython-36.pyc │ │ │ │ └── fix_unpacking.cpython-36.pyc │ │ │ ├── feature_base.py │ │ │ ├── fix_add_all__future__imports.py │ │ │ ├── fix_add_all_future_builtins.py │ │ │ ├── fix_add_future_standard_library_import.py │ │ │ ├── fix_annotations.py │ │ │ ├── fix_division.py │ │ │ ├── fix_features.py │ │ │ ├── fix_fullargspec.py │ │ │ ├── fix_future_builtins.py │ │ │ ├── fix_getcwd.py │ │ │ ├── fix_imports.py │ │ │ ├── fix_imports2.py │ │ │ ├── fix_kwargs.py │ │ │ ├── fix_memoryview.py │ │ │ ├── fix_metaclass.py │ │ │ ├── fix_newstyle.py │ │ │ ├── fix_next.py │ │ │ ├── fix_printfunction.py │ │ │ ├── fix_raise.py │ │ │ ├── fix_raise_.py │ │ │ ├── fix_throw.py │ │ │ └── fix_unpacking.py │ │ └── main.py │ │ ├── mysfitsProcessStream.py │ │ ├── past │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── builtins │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ └── noniterators.cpython-36.pyc │ │ │ ├── misc.py │ │ │ └── noniterators.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── translation │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── types │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── basestring.cpython-36.pyc │ │ │ │ ├── olddict.cpython-36.pyc │ │ │ │ └── oldstr.cpython-36.pyc │ │ │ ├── basestring.py │ │ │ ├── olddict.py │ │ │ └── oldstr.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── python_dateutil-2.7.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── requests-2.19.1.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __version__.cpython-36.pyc │ │ │ ├── _internal_utils.cpython-36.pyc │ │ │ ├── adapters.cpython-36.pyc │ │ │ ├── api.cpython-36.pyc │ │ │ ├── auth.cpython-36.pyc │ │ │ ├── certs.cpython-36.pyc │ │ │ ├── compat.cpython-36.pyc │ │ │ ├── cookies.cpython-36.pyc │ │ │ ├── exceptions.cpython-36.pyc │ │ │ ├── help.cpython-36.pyc │ │ │ ├── hooks.cpython-36.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── packages.cpython-36.pyc │ │ │ ├── sessions.cpython-36.pyc │ │ │ ├── status_codes.cpython-36.pyc │ │ │ ├── structures.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ ├── requirements.txt │ │ ├── six-1.11.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── six.py │ │ ├── urllib3-1.23.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── _collections.cpython-36.pyc │ │ │ ├── connection.cpython-36.pyc │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ ├── exceptions.cpython-36.pyc │ │ │ ├── fields.cpython-36.pyc │ │ │ ├── filepost.cpython-36.pyc │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ ├── request.cpython-36.pyc │ │ │ └── response.cpython-36.pyc │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── appengine.cpython-36.pyc │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ ├── pyopenssl.cpython-36.pyc │ │ │ │ ├── securetransport.cpython-36.pyc │ │ │ │ └── socks.cpython-36.pyc │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── bindings.cpython-36.pyc │ │ │ │ │ └── low_level.cpython-36.pyc │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ └── six.cpython-36.pyc │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── makefile.cpython-36.pyc │ │ │ │ └── makefile.py │ │ │ ├── ordered_dict.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── connection.cpython-36.pyc │ │ │ ├── queue.cpython-36.pyc │ │ │ ├── request.cpython-36.pyc │ │ │ ├── response.cpython-36.pyc │ │ │ ├── retry.cpython-36.pyc │ │ │ ├── ssl_.cpython-36.pyc │ │ │ ├── timeout.cpython-36.pyc │ │ │ ├── url.cpython-36.pyc │ │ │ └── wait.cpython-36.pyc │ │ │ ├── connection.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ │ ├── wrapt-1.10.11.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ └── wrapt │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── arguments.cpython-36.pyc │ │ ├── decorators.cpython-36.pyc │ │ ├── importer.cpython-36.pyc │ │ └── wrappers.cpython-36.pyc │ │ ├── _wrappers.cpython-36m-x86_64-linux-gnu.so │ │ ├── arguments.py │ │ ├── decorators.py │ │ ├── importer.py │ │ └── wrappers.py ├── cdk │ ├── .gitignore │ ├── .npmignore │ ├── bin │ │ └── cdk.ts │ └── lib │ │ ├── apigateway-stack.ts │ │ ├── cicd-stack.ts │ │ ├── cognito-stack.ts │ │ ├── dynamodb-stack.ts │ │ ├── ecr-stack.ts │ │ ├── ecs-stack.ts │ │ ├── kinesis-firehose-stack.ts │ │ ├── network-stack.ts │ │ ├── web-application-stack.ts │ │ └── xray-stack.ts └── web │ └── index.html └── module-7 ├── README.md ├── app └── service │ └── recommendations.py ├── cdk ├── .gitignore ├── .npmignore ├── bin │ └── cdk.ts └── lib │ ├── apigateway-stack.ts │ ├── cicd-stack.ts │ ├── cognito-stack.ts │ ├── dynamodb-stack.ts │ ├── ecr-stack.ts │ ├── ecs-stack.ts │ ├── kinesis-firehose-stack.ts │ ├── network-stack.ts │ ├── sagemaker-stack.ts │ ├── web-application-stack.ts │ └── xray-stack.ts ├── sagemaker └── mysfit_recommendations_knn.ipynb └── web └── index.html /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/README.md -------------------------------------------------------------------------------- /images/arch-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/arch-diagram.png -------------------------------------------------------------------------------- /images/module-1/architecture-module-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/architecture-module-1.png -------------------------------------------------------------------------------- /images/module-1/bucket-policy-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/bucket-policy-image.png -------------------------------------------------------------------------------- /images/module-1/cloud9-configure-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/cloud9-configure-env.png -------------------------------------------------------------------------------- /images/module-1/cloud9-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/cloud9-explorer.png -------------------------------------------------------------------------------- /images/module-1/cloud9-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/cloud9-home.png -------------------------------------------------------------------------------- /images/module-1/cloud9-name-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/cloud9-name-ide.png -------------------------------------------------------------------------------- /images/module-1/cloud9-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/cloud9-review.png -------------------------------------------------------------------------------- /images/module-1/cloud9-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/cloud9-service.png -------------------------------------------------------------------------------- /images/module-1/cloud9-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/cloud9-welcome.png -------------------------------------------------------------------------------- /images/module-1/mysfits-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/mysfits-welcome.png -------------------------------------------------------------------------------- /images/module-1/replace-bucket-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-1/replace-bucket-name.png -------------------------------------------------------------------------------- /images/module-2/address-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-2/address-bar.png -------------------------------------------------------------------------------- /images/module-2/after-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-2/after-replace.png -------------------------------------------------------------------------------- /images/module-2/architecture-module-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-2/architecture-module-2.png -------------------------------------------------------------------------------- /images/module-2/architecture-module-2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-2/architecture-module-2b.png -------------------------------------------------------------------------------- /images/module-2/before-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-2/before-replace.png -------------------------------------------------------------------------------- /images/module-2/cfn-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-2/cfn-complete.png -------------------------------------------------------------------------------- /images/module-2/preview-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-2/preview-menu.png -------------------------------------------------------------------------------- /images/module-3/architecture-module-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-3/architecture-module-3.png -------------------------------------------------------------------------------- /images/module-4/architecture-module-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-4/architecture-module-4.png -------------------------------------------------------------------------------- /images/module-4/before-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-4/before-replace.png -------------------------------------------------------------------------------- /images/module-5/architecture-module-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-5/architecture-module-5.png -------------------------------------------------------------------------------- /images/module-5/replace-api-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-5/replace-api-endpoint.png -------------------------------------------------------------------------------- /images/module-6/api-x-ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/api-x-ray.png -------------------------------------------------------------------------------- /images/module-6/confirm-sns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/confirm-sns.png -------------------------------------------------------------------------------- /images/module-6/exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/exception.png -------------------------------------------------------------------------------- /images/module-6/lambda-only-x-ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/lambda-only-x-ray.png -------------------------------------------------------------------------------- /images/module-6/services-x-ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/services-x-ray.png -------------------------------------------------------------------------------- /images/module-6/view-traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/view-traces.png -------------------------------------------------------------------------------- /images/module-6/x-ray-arch-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/x-ray-arch-diagram.png -------------------------------------------------------------------------------- /images/module-6/x-ray-errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-6/x-ray-errors.png -------------------------------------------------------------------------------- /images/module-7/jupyter-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-7/jupyter-home.png -------------------------------------------------------------------------------- /images/module-7/recommendation-button-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-7/recommendation-button-ss.png -------------------------------------------------------------------------------- /images/module-7/sagemaker-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-7/sagemaker-architecture.png -------------------------------------------------------------------------------- /images/module-7/sagemaker-notebook-instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/images/module-7/sagemaker-notebook-instances.png -------------------------------------------------------------------------------- /module-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-1/README.md -------------------------------------------------------------------------------- /module-1/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-1/cdk/.gitignore -------------------------------------------------------------------------------- /module-1/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-1/cdk/.npmignore -------------------------------------------------------------------------------- /module-1/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-1/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /module-1/cdk/lib/web-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-1/cdk/lib/web-application-stack.ts -------------------------------------------------------------------------------- /module-1/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-1/web/index.html -------------------------------------------------------------------------------- /module-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/README.md -------------------------------------------------------------------------------- /module-2/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/app/Dockerfile -------------------------------------------------------------------------------- /module-2/app/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/app/buildspec.yml -------------------------------------------------------------------------------- /module-2/app/service/mysfits-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/app/service/mysfits-response.json -------------------------------------------------------------------------------- /module-2/app/service/mythicalMysfitsService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/app/service/mythicalMysfitsService.py -------------------------------------------------------------------------------- /module-2/app/service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/app/service/requirements.txt -------------------------------------------------------------------------------- /module-2/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/.gitignore -------------------------------------------------------------------------------- /module-2/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/.npmignore -------------------------------------------------------------------------------- /module-2/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /module-2/cdk/lib/cicd-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/lib/cicd-stack.ts -------------------------------------------------------------------------------- /module-2/cdk/lib/ecr-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/lib/ecr-stack.ts -------------------------------------------------------------------------------- /module-2/cdk/lib/ecs-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/lib/ecs-stack.ts -------------------------------------------------------------------------------- /module-2/cdk/lib/network-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/lib/network-stack.ts -------------------------------------------------------------------------------- /module-2/cdk/lib/web-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/cdk/lib/web-application-stack.ts -------------------------------------------------------------------------------- /module-2/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-2/web/index.html -------------------------------------------------------------------------------- /module-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/README.md -------------------------------------------------------------------------------- /module-3/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/app/Dockerfile -------------------------------------------------------------------------------- /module-3/app/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/app/buildspec.yml -------------------------------------------------------------------------------- /module-3/app/service/mysfitsTableClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/app/service/mysfitsTableClient.py -------------------------------------------------------------------------------- /module-3/app/service/mythicalMysfitsService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/app/service/mythicalMysfitsService.py -------------------------------------------------------------------------------- /module-3/app/service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/app/service/requirements.txt -------------------------------------------------------------------------------- /module-3/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/.gitignore -------------------------------------------------------------------------------- /module-3/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/.npmignore -------------------------------------------------------------------------------- /module-3/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /module-3/cdk/lib/cicd-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/lib/cicd-stack.ts -------------------------------------------------------------------------------- /module-3/cdk/lib/dynamodb-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/lib/dynamodb-stack.ts -------------------------------------------------------------------------------- /module-3/cdk/lib/ecr-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/lib/ecr-stack.ts -------------------------------------------------------------------------------- /module-3/cdk/lib/ecs-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/lib/ecs-stack.ts -------------------------------------------------------------------------------- /module-3/cdk/lib/network-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/lib/network-stack.ts -------------------------------------------------------------------------------- /module-3/cdk/lib/web-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/cdk/lib/web-application-stack.ts -------------------------------------------------------------------------------- /module-3/data/populate-dynamodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/data/populate-dynamodb.json -------------------------------------------------------------------------------- /module-3/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-3/web/index.html -------------------------------------------------------------------------------- /module-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/README.md -------------------------------------------------------------------------------- /module-4/api/api-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/api/api-swagger.json -------------------------------------------------------------------------------- /module-4/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/app/Dockerfile -------------------------------------------------------------------------------- /module-4/app/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/app/buildspec.yml -------------------------------------------------------------------------------- /module-4/app/service/mysfitsTableClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/app/service/mysfitsTableClient.py -------------------------------------------------------------------------------- /module-4/app/service/mythicalMysfitsService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/app/service/mythicalMysfitsService.py -------------------------------------------------------------------------------- /module-4/app/service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/app/service/requirements.txt -------------------------------------------------------------------------------- /module-4/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/.gitignore -------------------------------------------------------------------------------- /module-4/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/.npmignore -------------------------------------------------------------------------------- /module-4/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/apigateway-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/apigateway-stack.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/cicd-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/cicd-stack.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/cognito-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/cognito-stack.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/dynamodb-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/dynamodb-stack.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/ecr-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/ecr-stack.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/ecs-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/ecs-stack.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/network-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/network-stack.ts -------------------------------------------------------------------------------- /module-4/cdk/lib/web-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/cdk/lib/web-application-stack.ts -------------------------------------------------------------------------------- /module-4/web/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/web/confirm.html -------------------------------------------------------------------------------- /module-4/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/web/index.html -------------------------------------------------------------------------------- /module-4/web/js/amazon-cognito-identity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/web/js/amazon-cognito-identity.min.js -------------------------------------------------------------------------------- /module-4/web/js/aws-cognito-sdk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/web/js/aws-cognito-sdk.min.js -------------------------------------------------------------------------------- /module-4/web/js/aws-sdk-2.246.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/web/js/aws-sdk-2.246.1.min.js -------------------------------------------------------------------------------- /module-4/web/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-4/web/register.html -------------------------------------------------------------------------------- /module-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/README.md -------------------------------------------------------------------------------- /module-5/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/app/Dockerfile -------------------------------------------------------------------------------- /module-5/app/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/app/buildspec.yml -------------------------------------------------------------------------------- /module-5/app/service/mysfitsTableClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/app/service/mysfitsTableClient.py -------------------------------------------------------------------------------- /module-5/app/service/mythicalMysfitsService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/app/service/mythicalMysfitsService.py -------------------------------------------------------------------------------- /module-5/app/service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/app/service/requirements.txt -------------------------------------------------------------------------------- /module-5/app/streaming/streamProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/app/streaming/streamProcessor.py -------------------------------------------------------------------------------- /module-5/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/.gitignore -------------------------------------------------------------------------------- /module-5/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/.npmignore -------------------------------------------------------------------------------- /module-5/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/apigateway-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/apigateway-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/cicd-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/cicd-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/cognito-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/cognito-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/dynamodb-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/dynamodb-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/ecr-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/ecr-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/ecs-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/ecs-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/kinesis-firehose-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/kinesis-firehose-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/network-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/network-stack.ts -------------------------------------------------------------------------------- /module-5/cdk/lib/web-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/cdk/lib/web-application-stack.ts -------------------------------------------------------------------------------- /module-5/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-5/web/index.html -------------------------------------------------------------------------------- /module-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/README.md -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk-2.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aws_xray_sdk 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/emitters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/sampling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/sampling/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/ext/aiohttp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/ext/flask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/ext/flask_sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/ext/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/ext/sqlalchemy/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/ext/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/aws_xray_sdk/ext/util.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/aws_xray_sdk/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '2.1.0' 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/chardetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/chardetect -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/futurize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/futurize -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/jp.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/pasteurize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/pasteurize -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2html.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2html4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2html4.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2html5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2html5.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2latex.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2man.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2odt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2odt.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2pseudoxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2pseudoxml.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2s5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2s5.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2xetex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2xetex.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rst2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rst2xml.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/bin/rstpep2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/bin/rstpep2html.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore-1.12.8.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore-1.12.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | botocore 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/args.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/auth.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/awsrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/awsrequest.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/cacert.pem -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/client.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/compat.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/config.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/configloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/configloader.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/credentials.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/acm-pca/2017-08-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/appstream/2016-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/appsync/2017-07-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/autoscaling-plans/2018-01-06/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/batch/2016-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/budgets/2016-10-20/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/ce/2017-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/cloudhsm/2014-05-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/cloudsearch/2013-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/codepipeline/2015-07-09/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/codestar/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/cognito-identity/2014-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/cognito-idp/2016-04-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/connect/2017-08-08/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/dax/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/directconnect/2012-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/discovery/2015-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/dlm/2018-01-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/eks/2017-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/events/2015-10-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/firehose/2015-08-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/fms/2018-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/gamelift/2015-10-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/iot-jobs-data/2017-09-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/iot1click-projects/2018-05-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/iotanalytics/2017-11-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/kinesis-video-archived-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/kinesis-video-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/kinesisvideo/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/lex-runtime/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/macie/2017-12-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/mediastore-data/2017-09-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/mediastore/2017-09-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/mediatailor/2018-04-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/mgh/2017-05-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/mq/2017-11-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/opsworkscm/2016-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/pi/2018-02-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/secretsmanager/2017-10-17/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/serverlessrepo/2017-09-08/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/signer/2017-08-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/sqs/2012-11-05/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/sts/2011-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/transcribe/2017-10-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/translate/2017-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/data/waf-regional/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/client.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/example.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/method.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/params.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/service.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/shape.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/utils.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/docs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/docs/waiter.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/endpoint.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/errorfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/errorfactory.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/eventstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/eventstream.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/exceptions.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/handlers.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/history.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/hooks.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/httpsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/httpsession.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/loaders.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/model.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/paginate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/paginate.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/parsers.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/regions.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/response.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/retryhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/retryhandler.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/serialize.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/session.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/signers.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/stub.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/translate.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/utils.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/validate.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/vendored/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/vendored/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/vendored/six.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/botocore/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/botocore/waiter.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/certifi-2018.8.24.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/certifi-2018.8.24.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/certifi/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/certifi/__main__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/certifi/cacert.pem -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/certifi/core.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/big5freq.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/big5prober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/charsetprober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/compat.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/cp949prober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/enums.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/escprober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/escsm.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/eucjpprober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/euckrfreq.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/euckrprober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/euctwfreq.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/euctwprober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/gb2312freq.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/gb2312prober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/hebrewprober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/jisfreq.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/jpcntx.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/langthaimodel.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/latin1prober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/mbcssm.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/sjisprober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/utf8prober.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/chardet/version.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/_common.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/_version.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/easter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/easter.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/rrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/rrule.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/tz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/tz/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/tz/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/tz/_common.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/tz/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/tz/tz.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/tz/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/tz/win.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/tzwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/tzwin.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/dateutil/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/dateutil/utils.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils-0.14.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils-0.14.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils-0.14.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docutils 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/_compat.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/core.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/examples.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/frontend.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/io.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/af.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/af.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/ca.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/cs.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/da.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/de.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/en.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/eo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/eo.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/es.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/fa.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/fi.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/fr.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/gl.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/he.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/he.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/it.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/ja.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/lt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/lt.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/lv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/lv.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/nl.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/pl.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/ru.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/sk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/sk.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/languages/sv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/languages/sv.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/nodes.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/parsers/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/parsers/null.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/readers/pep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/readers/pep.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/statemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/statemachine.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/utils/roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/utils/roman.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/docutils/writers/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/docutils/writers/null.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future-0.16.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future-0.16.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.31.1) 3 | Root-Is-Purelib: true 4 | Tag: cp36-none-any 5 | 6 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/backports/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/backports/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/backports/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/backports/misc.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/backports/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/backports/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/backports/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/builtins/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/builtins/misc.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/_thread.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/builtins.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/copyreg.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/dbm/dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/dbm/dumb.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/dbm/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/dbm/gnu.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/dbm/ndbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/dbm/ndbm.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/pickle.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/queue.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/reprlib.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/sys.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/winreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/moves/winreg.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/moves/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/tests/base.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/newbytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/newbytes.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/newdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/newdict.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/newint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/newint.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/newlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/newlist.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/newopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/newopen.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/newrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/newrange.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/types/newstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/types/newstr.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/future/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/future/utils/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna-2.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna-2.7.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna-2.7.dist-info/WHEEL -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna-2.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna/codec.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna/compat.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna/core.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna/idnadata.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna/intranges.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.7' 2 | 3 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/idna/uts46data.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath-0.9.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath-0.9.3.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": true, "git_version": "0466cc1"} -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath-0.9.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jmespath 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/ast.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/compat.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/exceptions.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/functions.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/lexer.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/parser.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jmespath/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jmespath/visitor.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle-1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle-1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.30.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle-1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jsonpickle 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/backend.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/compat.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/ext/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/ext/numpy.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/ext/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/ext/pandas.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/handlers.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/pickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/pickler.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/tags.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/unpickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/unpickler.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/jsonpickle/util.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/jsonpickle/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0' 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/libfuturize/__init__.py: -------------------------------------------------------------------------------- 1 | # empty to make this a package 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/libfuturize/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/libfuturize/main.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/libpasteurize/__init__.py: -------------------------------------------------------------------------------- 1 | # empty to make this a package 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/libpasteurize/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/libpasteurize/main.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/mysfitsPostQuestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/mysfitsPostQuestion.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/past/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/builtins/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/past/builtins/misc.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/past/types/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/types/basestring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/past/types/basestring.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/types/olddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/past/types/olddict.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/types/oldstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/past/types/oldstr.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/past/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/past/utils/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/python_dateutil-2.7.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/python_dateutil-2.7.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/python_dateutil-2.7.3.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests-2.19.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests-2.19.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/__version__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/adapters.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/api.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/auth.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/certs.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/compat.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/cookies.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/exceptions.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/help.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/hooks.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/models.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/packages.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/sessions.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/status_codes.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/structures.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/requests/utils.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/requirements.txt: -------------------------------------------------------------------------------- 1 | aws_xray_sdk==2.1.0 -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/six-1.11.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/six-1.11.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/six.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3-1.23.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3-1.23.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/_collections.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/connection.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/exceptions.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/fields.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/filepost.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/packages/six.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/poolmanager.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/request.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/response.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/queue.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/request.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/response.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/retry.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/timeout.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/url.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/urllib3/util/wait.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/wrapt-1.10.11.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/wrapt-1.10.11.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wrapt 2 | -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/wrapt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/wrapt/__init__.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/wrapt/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/wrapt/arguments.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/wrapt/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/wrapt/decorators.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/wrapt/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/wrapt/importer.py -------------------------------------------------------------------------------- /module-6/app/PostQuestionsService/wrapt/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/PostQuestionsService/wrapt/wrappers.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk-2.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aws_xray_sdk 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/emitters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/sampling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/sampling/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/ext/aiohttp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/ext/flask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/ext/flask_sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/ext/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/ext/sqlalchemy/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/aws_xray_sdk/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '2.1.0' 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/chardetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/chardetect -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/futurize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/futurize -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/jp.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/pasteurize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/pasteurize -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2html.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2html4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2html4.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2html5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2html5.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2latex.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2man.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2odt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2odt.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2pseudoxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2pseudoxml.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2s5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2s5.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2xetex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2xetex.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rst2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rst2xml.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/bin/rstpep2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/bin/rstpep2html.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore-1.12.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore-1.12.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | botocore 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/args.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/auth.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/awsrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/awsrequest.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/cacert.pem -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/client.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/compat.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/config.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/acm-pca/2017-08-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/appstream/2016-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/appsync/2017-07-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/autoscaling-plans/2018-01-06/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/batch/2016-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/budgets/2016-10-20/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/ce/2017-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/cloudhsm/2014-05-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/cloudsearch/2013-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/codepipeline/2015-07-09/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/codestar/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/cognito-identity/2014-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/cognito-idp/2016-04-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/connect/2017-08-08/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/dax/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/directconnect/2012-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/discovery/2015-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/dlm/2018-01-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/eks/2017-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/events/2015-10-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/firehose/2015-08-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/fms/2018-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/gamelift/2015-10-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/iot-jobs-data/2017-09-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/iot1click-projects/2018-05-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/iotanalytics/2017-11-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/kinesis-video-archived-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/kinesis-video-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/kinesisvideo/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/lex-runtime/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/macie/2017-12-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/mediastore-data/2017-09-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/mediastore/2017-09-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/mediatailor/2018-04-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/mgh/2017-05-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/mq/2017-11-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/opsworkscm/2016-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/pi/2018-02-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/secretsmanager/2017-10-17/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/serverlessrepo/2017-09-08/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/signer/2017-08-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/sqs/2012-11-05/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/sts/2011-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/transcribe/2017-10-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/translate/2017-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/data/waf-regional/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/docs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/docs/shape.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/docs/utils.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/endpoint.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/exceptions.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/handlers.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/history.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/hooks.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/loaders.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/model.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/paginate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/paginate.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/parsers.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/regions.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/response.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/serialize.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/session.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/signers.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/stub.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/translate.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/utils.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/validate.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/vendored/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/botocore/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/botocore/waiter.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/certifi-2018.8.24.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/certifi-2018.8.24.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/certifi/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/certifi/__main__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/certifi/cacert.pem -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/certifi/core.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/big5freq.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/big5prober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/compat.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/cp949prober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/enums.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/escprober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/escsm.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/eucjpprober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/euckrfreq.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/euckrprober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/euctwfreq.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/euctwprober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/gb2312freq.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/jisfreq.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/jpcntx.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/mbcssm.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/sjisprober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/utf8prober.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/chardet/version.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/_common.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/_version.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/easter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/easter.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/rrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/rrule.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/tz/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/tz/_common.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/tz/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/tz/tz.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/tz/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/tz/win.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/tzwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/tzwin.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/dateutil/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/dateutil/utils.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils-0.14.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils-0.14.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils-0.14.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docutils 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/docutils/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/docutils/_compat.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/docutils/core.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/docutils/examples.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/docutils/frontend.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/docutils/io.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/docutils/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/docutils/nodes.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future-0.16.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future-0.16.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.31.1) 3 | Root-Is-Purelib: true 4 | Tag: cp36-none-any 5 | 6 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/backports/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/backports/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/backports/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/backports/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/backports/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/moves/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/moves/pickle.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/moves/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/moves/queue.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/moves/sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/moves/sys.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/moves/winreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/moves/winreg.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/moves/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/tests/base.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/types/newint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/types/newint.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/future/types/newstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/future/types/newstr.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna-2.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna-2.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/idna/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/idna/codec.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/idna/compat.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/idna/core.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/idna/idnadata.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/idna/intranges.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.7' 2 | 3 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/idna/uts46data.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath-0.9.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath-0.9.3.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": true, "git_version": "0466cc1"} -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath-0.9.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jmespath 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/ast.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/compat.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/exceptions.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/functions.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/lexer.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/parser.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jmespath/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jmespath/visitor.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle-1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle-1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.30.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle-1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jsonpickle 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jsonpickle/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jsonpickle/backend.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jsonpickle/compat.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jsonpickle/handlers.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/pickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jsonpickle/pickler.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jsonpickle/tags.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/jsonpickle/util.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/jsonpickle/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0' 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/libfuturize/__init__.py: -------------------------------------------------------------------------------- 1 | # empty to make this a package 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/libfuturize/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/libfuturize/main.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/libpasteurize/__init__.py: -------------------------------------------------------------------------------- 1 | # empty to make this a package 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/libpasteurize/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/libpasteurize/main.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/past/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/past/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/past/builtins/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/past/builtins/misc.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/past/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/past/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/past/types/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/python_dateutil-2.7.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/python_dateutil-2.7.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/python_dateutil-2.7.3.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests-2.19.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests-2.19.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/api.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/auth.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/certs.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/compat.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/cookies.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/help.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/hooks.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/models.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/requests/utils.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/requirements.txt: -------------------------------------------------------------------------------- 1 | aws_xray_sdk==2.1.0 -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/six-1.11.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/six-1.11.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/six.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3-1.23.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3-1.23.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/urllib3/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/urllib3/fields.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/urllib3/filepost.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/urllib3/request.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/urllib3/response.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/urllib3/util/url.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/wrapt-1.10.11.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/wrapt-1.10.11.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wrapt 2 | -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/wrapt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/wrapt/__init__.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/wrapt/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/wrapt/arguments.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/wrapt/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/wrapt/decorators.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/wrapt/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/wrapt/importer.py -------------------------------------------------------------------------------- /module-6/app/ProcessQuestionsStream/wrapt/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/app/ProcessQuestionsStream/wrapt/wrappers.py -------------------------------------------------------------------------------- /module-6/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/.gitignore -------------------------------------------------------------------------------- /module-6/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/.npmignore -------------------------------------------------------------------------------- /module-6/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/apigateway-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/apigateway-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/cicd-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/cicd-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/cognito-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/cognito-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/dynamodb-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/dynamodb-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/ecr-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/ecr-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/ecs-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/ecs-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/kinesis-firehose-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/kinesis-firehose-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/network-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/network-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/web-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/web-application-stack.ts -------------------------------------------------------------------------------- /module-6/cdk/lib/xray-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/cdk/lib/xray-stack.ts -------------------------------------------------------------------------------- /module-6/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-6/web/index.html -------------------------------------------------------------------------------- /module-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/README.md -------------------------------------------------------------------------------- /module-7/app/service/recommendations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/app/service/recommendations.py -------------------------------------------------------------------------------- /module-7/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/.gitignore -------------------------------------------------------------------------------- /module-7/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/.npmignore -------------------------------------------------------------------------------- /module-7/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/apigateway-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/apigateway-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/cicd-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/cicd-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/cognito-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/cognito-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/dynamodb-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/dynamodb-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/ecr-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/ecr-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/ecs-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/ecs-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/kinesis-firehose-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/kinesis-firehose-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/network-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/network-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/sagemaker-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/sagemaker-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/web-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/web-application-stack.ts -------------------------------------------------------------------------------- /module-7/cdk/lib/xray-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/cdk/lib/xray-stack.ts -------------------------------------------------------------------------------- /module-7/sagemaker/mysfit_recommendations_knn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/sagemaker/mysfit_recommendations_knn.ipynb -------------------------------------------------------------------------------- /module-7/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpiljoong/aws-modern-application-workshop/HEAD/module-7/web/index.html --------------------------------------------------------------------------------