├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── deployment ├── build-s3-dist.sh ├── digital-user-engagement-events-database.template └── run-unit-tests.sh └── source ├── athena-partition-lambda └── lambda_function.py ├── custom-bucket-name-helper ├── bin │ └── chardetect ├── certifi-2020.4.5.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __main__.cpython-38.pyc │ │ └── core.cpython-38.pyc │ ├── cacert.pem │ └── core.py ├── cfnresponse.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-38.pyc │ │ ├── big5freq.cpython-38.pyc │ │ ├── big5prober.cpython-38.pyc │ │ ├── chardistribution.cpython-38.pyc │ │ ├── charsetgroupprober.cpython-38.pyc │ │ ├── charsetprober.cpython-38.pyc │ │ ├── codingstatemachine.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cp949prober.cpython-38.pyc │ │ ├── enums.cpython-38.pyc │ │ ├── escprober.cpython-38.pyc │ │ ├── escsm.cpython-38.pyc │ │ ├── eucjpprober.cpython-38.pyc │ │ ├── euckrfreq.cpython-38.pyc │ │ ├── euckrprober.cpython-38.pyc │ │ ├── euctwfreq.cpython-38.pyc │ │ ├── euctwprober.cpython-38.pyc │ │ ├── gb2312freq.cpython-38.pyc │ │ ├── gb2312prober.cpython-38.pyc │ │ ├── hebrewprober.cpython-38.pyc │ │ ├── jisfreq.cpython-38.pyc │ │ ├── jpcntx.cpython-38.pyc │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ ├── langgreekmodel.cpython-38.pyc │ │ ├── langhebrewmodel.cpython-38.pyc │ │ ├── langhungarianmodel.cpython-38.pyc │ │ ├── langthaimodel.cpython-38.pyc │ │ ├── langturkishmodel.cpython-38.pyc │ │ ├── latin1prober.cpython-38.pyc │ │ ├── mbcharsetprober.cpython-38.pyc │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ ├── mbcssm.cpython-38.pyc │ │ ├── sbcharsetprober.cpython-38.pyc │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ ├── sjisprober.cpython-38.pyc │ │ ├── universaldetector.cpython-38.pyc │ │ ├── utf8prober.cpython-38.pyc │ │ └── version.cpython-38.pyc │ ├── big5freq.py │ ├── big5prober.py │ ├── chardistribution.py │ ├── charsetgroupprober.py │ ├── charsetprober.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── chardetect.cpython-38.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 ├── idna-2.9.dist-info │ ├── INSTALLER │ ├── LICENSE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── codec.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── core.cpython-38.pyc │ │ ├── idnadata.cpython-38.pyc │ │ ├── intranges.cpython-38.pyc │ │ ├── package_data.cpython-38.pyc │ │ └── uts46data.cpython-38.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ └── uts46data.py ├── lambda_function.py ├── requests-2.23.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __version__.cpython-38.pyc │ │ ├── _internal_utils.cpython-38.pyc │ │ ├── adapters.cpython-38.pyc │ │ ├── api.cpython-38.pyc │ │ ├── auth.cpython-38.pyc │ │ ├── certs.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cookies.cpython-38.pyc │ │ ├── exceptions.cpython-38.pyc │ │ ├── help.cpython-38.pyc │ │ ├── hooks.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── packages.cpython-38.pyc │ │ ├── sessions.cpython-38.pyc │ │ ├── status_codes.cpython-38.pyc │ │ ├── structures.cpython-38.pyc │ │ └── utils.cpython-38.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 ├── urllib3-1.25.9.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt └── urllib3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── _collections.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── connectionpool.cpython-38.pyc │ ├── exceptions.cpython-38.pyc │ ├── fields.cpython-38.pyc │ ├── filepost.cpython-38.pyc │ ├── poolmanager.cpython-38.pyc │ ├── request.cpython-38.pyc │ └── response.cpython-38.pyc │ ├── _collections.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _appengine_environ.cpython-38.pyc │ │ ├── appengine.cpython-38.pyc │ │ ├── ntlmpool.cpython-38.pyc │ │ ├── pyopenssl.cpython-38.pyc │ │ ├── securetransport.cpython-38.pyc │ │ └── socks.cpython-38.pyc │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bindings.cpython-38.pyc │ │ │ └── low_level.cpython-38.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-38.pyc │ │ └── six.cpython-38.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── makefile.cpython-38.pyc │ │ └── makefile.py │ ├── six.py │ └── ssl_match_hostname │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── _implementation.cpython-38.pyc │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── queue.cpython-38.pyc │ ├── request.cpython-38.pyc │ ├── response.cpython-38.pyc │ ├── retry.cpython-38.pyc │ ├── ssl_.cpython-38.pyc │ ├── timeout.cpython-38.pyc │ ├── url.cpython-38.pyc │ └── wait.cpython-38.pyc │ ├── connection.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── timeout.py │ ├── url.py │ └── wait.py ├── custom-resource-helper ├── bin │ └── chardetect ├── certifi-2020.4.5.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __main__.cpython-38.pyc │ │ └── core.cpython-38.pyc │ ├── cacert.pem │ └── core.py ├── cfnresponse.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-38.pyc │ │ ├── big5freq.cpython-38.pyc │ │ ├── big5prober.cpython-38.pyc │ │ ├── chardistribution.cpython-38.pyc │ │ ├── charsetgroupprober.cpython-38.pyc │ │ ├── charsetprober.cpython-38.pyc │ │ ├── codingstatemachine.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cp949prober.cpython-38.pyc │ │ ├── enums.cpython-38.pyc │ │ ├── escprober.cpython-38.pyc │ │ ├── escsm.cpython-38.pyc │ │ ├── eucjpprober.cpython-38.pyc │ │ ├── euckrfreq.cpython-38.pyc │ │ ├── euckrprober.cpython-38.pyc │ │ ├── euctwfreq.cpython-38.pyc │ │ ├── euctwprober.cpython-38.pyc │ │ ├── gb2312freq.cpython-38.pyc │ │ ├── gb2312prober.cpython-38.pyc │ │ ├── hebrewprober.cpython-38.pyc │ │ ├── jisfreq.cpython-38.pyc │ │ ├── jpcntx.cpython-38.pyc │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ ├── langgreekmodel.cpython-38.pyc │ │ ├── langhebrewmodel.cpython-38.pyc │ │ ├── langhungarianmodel.cpython-38.pyc │ │ ├── langthaimodel.cpython-38.pyc │ │ ├── langturkishmodel.cpython-38.pyc │ │ ├── latin1prober.cpython-38.pyc │ │ ├── mbcharsetprober.cpython-38.pyc │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ ├── mbcssm.cpython-38.pyc │ │ ├── sbcharsetprober.cpython-38.pyc │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ ├── sjisprober.cpython-38.pyc │ │ ├── universaldetector.cpython-38.pyc │ │ ├── utf8prober.cpython-38.pyc │ │ └── version.cpython-38.pyc │ ├── big5freq.py │ ├── big5prober.py │ ├── chardistribution.py │ ├── charsetgroupprober.py │ ├── charsetprober.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── chardetect.cpython-38.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 ├── idna-2.9.dist-info │ ├── INSTALLER │ ├── LICENSE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── codec.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── core.cpython-38.pyc │ │ ├── idnadata.cpython-38.pyc │ │ ├── intranges.cpython-38.pyc │ │ ├── package_data.cpython-38.pyc │ │ └── uts46data.cpython-38.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ └── uts46data.py ├── lambda_function.py ├── requests-2.23.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __version__.cpython-38.pyc │ │ ├── _internal_utils.cpython-38.pyc │ │ ├── adapters.cpython-38.pyc │ │ ├── api.cpython-38.pyc │ │ ├── auth.cpython-38.pyc │ │ ├── certs.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cookies.cpython-38.pyc │ │ ├── exceptions.cpython-38.pyc │ │ ├── help.cpython-38.pyc │ │ ├── hooks.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── packages.cpython-38.pyc │ │ ├── sessions.cpython-38.pyc │ │ ├── status_codes.cpython-38.pyc │ │ ├── structures.cpython-38.pyc │ │ └── utils.cpython-38.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 ├── urllib3-1.25.9.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt └── urllib3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── _collections.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── connectionpool.cpython-38.pyc │ ├── exceptions.cpython-38.pyc │ ├── fields.cpython-38.pyc │ ├── filepost.cpython-38.pyc │ ├── poolmanager.cpython-38.pyc │ ├── request.cpython-38.pyc │ └── response.cpython-38.pyc │ ├── _collections.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _appengine_environ.cpython-38.pyc │ │ ├── appengine.cpython-38.pyc │ │ ├── ntlmpool.cpython-38.pyc │ │ ├── pyopenssl.cpython-38.pyc │ │ ├── securetransport.cpython-38.pyc │ │ └── socks.cpython-38.pyc │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bindings.cpython-38.pyc │ │ │ └── low_level.cpython-38.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-38.pyc │ │ └── six.cpython-38.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── makefile.cpython-38.pyc │ │ └── makefile.py │ ├── six.py │ └── ssl_match_hostname │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── _implementation.cpython-38.pyc │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── queue.cpython-38.pyc │ ├── request.cpython-38.pyc │ ├── response.cpython-38.pyc │ ├── retry.cpython-38.pyc │ ├── ssl_.cpython-38.pyc │ ├── timeout.cpython-38.pyc │ ├── url.cpython-38.pyc │ └── wait.cpython-38.pyc │ ├── connection.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── timeout.py │ ├── url.py │ └── wait.py └── lib └── cfnresponse.py /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/README.md -------------------------------------------------------------------------------- /deployment/build-s3-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/deployment/build-s3-dist.sh -------------------------------------------------------------------------------- /deployment/digital-user-engagement-events-database.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/deployment/digital-user-engagement-events-database.template -------------------------------------------------------------------------------- /deployment/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/deployment/run-unit-tests.sh -------------------------------------------------------------------------------- /source/athena-partition-lambda/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/athena-partition-lambda/lambda_function.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/bin/chardetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/bin/chardetect -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/LICENSE -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi-2020.4.5.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.04.05.2" 4 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi/__main__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi/cacert.pem -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/certifi/core.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/cfnresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/cfnresponse.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet-3.0.4.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet-3.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet-3.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet-3.0.4.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet-3.0.4.dist-info/entry_points.txt -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet-3.0.4.dist-info/metadata.json -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__init__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/big5freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/big5freq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/big5prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/big5prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/chardistribution.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/chardistribution.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/charsetgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/charsetgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/charsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/charsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/codingstatemachine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/codingstatemachine.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/cp949prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/cp949prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/enums.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/enums.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/escprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/escprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/escsm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/escsm.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/eucjpprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/eucjpprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/euckrfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/euckrfreq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/euckrprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/euckrprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/euctwfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/euctwfreq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/euctwprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/euctwprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/gb2312freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/gb2312freq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/gb2312prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/gb2312prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/hebrewprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/hebrewprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/jisfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/jisfreq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/jpcntx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/jpcntx.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/langgreekmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/langgreekmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/langhebrewmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/langhebrewmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/langhungarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/langhungarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/langthaimodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/langthaimodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/langturkishmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/langturkishmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/latin1prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/latin1prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/mbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/mbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/mbcssm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/mbcssm.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/sbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/sbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/sjisprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/sjisprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/universaldetector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/universaldetector.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/utf8prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/utf8prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/big5freq.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/big5prober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/chardistribution.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/charsetprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/cli/__pycache__/chardetect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/cli/__pycache__/chardetect.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/compat.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/cp949prober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/enums.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/escprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/escsm.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/eucjpprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/euckrfreq.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/euckrprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/euctwfreq.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/euctwprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/gb2312freq.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/gb2312prober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/hebrewprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/jisfreq.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/jpcntx.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/langthaimodel.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/latin1prober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/mbcssm.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/sjisprober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/universaldetector.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/utf8prober.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/chardet/version.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna-2.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna-2.9.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna-2.9.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna-2.9.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna-2.9.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna-2.9.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna-2.9.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna-2.9.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna-2.9.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna-2.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__init__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/codec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/codec.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/idnadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/idnadata.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/intranges.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/intranges.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/package_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/package_data.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/__pycache__/uts46data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/__pycache__/uts46data.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/codec.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/compat.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/core.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/idnadata.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/intranges.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.9' 2 | 3 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/idna/uts46data.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/lambda_function.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests-2.23.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests-2.23.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests-2.23.0.dist-info/LICENSE -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests-2.23.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests-2.23.0.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests-2.23.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests-2.23.0.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests-2.23.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests-2.23.0.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests-2.23.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__init__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/__version__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/__version__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/_internal_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/_internal_utils.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/adapters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/adapters.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/certs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/certs.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/cookies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/cookies.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/packages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/packages.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/sessions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/sessions.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/structures.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/__version__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/_internal_utils.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/adapters.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/api.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/auth.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/certs.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/compat.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/cookies.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/exceptions.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/help.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/hooks.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/models.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/packages.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/sessions.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/status_codes.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/structures.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/requests/utils.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3-1.25.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__init__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/_collections.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/_collections.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/connectionpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/connectionpool.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/fields.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/fields.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/filepost.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/filepost.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/poolmanager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/poolmanager.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/_collections.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/connection.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/connectionpool.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__pycache__/appengine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/__pycache__/appengine.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/__pycache__/socks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/__pycache__/socks.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/exceptions.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/fields.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/filepost.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/six.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/packages/ssl_match_hostname/_implementation.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/poolmanager.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/request.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/response.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__init__.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/queue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/queue.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/retry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/retry.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/ssl_.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/ssl_.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/timeout.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/timeout.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/url.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/url.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/__pycache__/wait.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/__pycache__/wait.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/connection.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/queue.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/request.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/response.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/retry.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/timeout.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/url.py -------------------------------------------------------------------------------- /source/custom-bucket-name-helper/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-bucket-name-helper/urllib3/util/wait.py -------------------------------------------------------------------------------- /source/custom-resource-helper/bin/chardetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/bin/chardetect -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi-2020.4.5.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi-2020.4.5.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi-2020.4.5.2.dist-info/LICENSE -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi-2020.4.5.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi-2020.4.5.2.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi-2020.4.5.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi-2020.4.5.2.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi-2020.4.5.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi-2020.4.5.2.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi-2020.4.5.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.04.05.2" 4 | -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi/__main__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi/cacert.pem -------------------------------------------------------------------------------- /source/custom-resource-helper/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/certifi/core.py -------------------------------------------------------------------------------- /source/custom-resource-helper/cfnresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/cfnresponse.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet-3.0.4.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet-3.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet-3.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet-3.0.4.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet-3.0.4.dist-info/entry_points.txt -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet-3.0.4.dist-info/metadata.json -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__init__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/big5freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/big5freq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/big5prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/big5prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/chardistribution.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/chardistribution.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/charsetgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/charsetgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/charsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/charsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/codingstatemachine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/codingstatemachine.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/cp949prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/cp949prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/enums.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/enums.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/escprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/escprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/escsm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/escsm.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/eucjpprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/eucjpprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/euckrfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/euckrfreq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/euckrprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/euckrprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/euctwfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/euctwfreq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/euctwprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/euctwprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/gb2312freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/gb2312freq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/gb2312prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/gb2312prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/hebrewprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/hebrewprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/jisfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/jisfreq.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/jpcntx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/jpcntx.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/langgreekmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/langgreekmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/langhebrewmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/langhebrewmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/langhungarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/langhungarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/langthaimodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/langthaimodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/langturkishmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/langturkishmodel.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/latin1prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/latin1prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/mbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/mbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/mbcssm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/mbcssm.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/sbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/sbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/sjisprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/sjisprober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/universaldetector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/universaldetector.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/utf8prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/utf8prober.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/big5freq.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/big5prober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/chardistribution.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/charsetprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/cli/__pycache__/chardetect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/cli/__pycache__/chardetect.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/compat.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/cp949prober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/enums.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/escprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/escsm.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/eucjpprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/euckrfreq.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/euckrprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/euctwfreq.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/euctwprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/gb2312freq.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/gb2312prober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/hebrewprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/jisfreq.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/jpcntx.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/langthaimodel.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/latin1prober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/mbcssm.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/sjisprober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/universaldetector.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/utf8prober.py -------------------------------------------------------------------------------- /source/custom-resource-helper/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/chardet/version.py -------------------------------------------------------------------------------- /source/custom-resource-helper/idna-2.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/idna-2.9.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna-2.9.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /source/custom-resource-helper/idna-2.9.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna-2.9.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-resource-helper/idna-2.9.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna-2.9.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-resource-helper/idna-2.9.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna-2.9.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-resource-helper/idna-2.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__init__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/codec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/codec.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/idnadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/idnadata.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/intranges.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/intranges.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/package_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/package_data.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/__pycache__/uts46data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/__pycache__/uts46data.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/codec.py -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/compat.py -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/core.py -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/idnadata.py -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/intranges.py -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.9' 2 | 3 | -------------------------------------------------------------------------------- /source/custom-resource-helper/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/idna/uts46data.py -------------------------------------------------------------------------------- /source/custom-resource-helper/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/lambda_function.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests-2.23.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/requests-2.23.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests-2.23.0.dist-info/LICENSE -------------------------------------------------------------------------------- /source/custom-resource-helper/requests-2.23.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests-2.23.0.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-resource-helper/requests-2.23.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests-2.23.0.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-resource-helper/requests-2.23.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests-2.23.0.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-resource-helper/requests-2.23.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__init__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/__version__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/__version__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/_internal_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/_internal_utils.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/adapters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/adapters.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/certs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/certs.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/cookies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/cookies.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/packages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/packages.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/sessions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/sessions.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/structures.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/__version__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/_internal_utils.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/adapters.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/api.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/auth.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/certs.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/compat.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/cookies.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/exceptions.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/help.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/hooks.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/models.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/packages.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/sessions.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/status_codes.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/structures.py -------------------------------------------------------------------------------- /source/custom-resource-helper/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/requests/utils.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3-1.25.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3-1.25.9.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3-1.25.9.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3-1.25.9.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3-1.25.9.dist-info/METADATA -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3-1.25.9.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3-1.25.9.dist-info/RECORD -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3-1.25.9.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3-1.25.9.dist-info/WHEEL -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3-1.25.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__init__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/_collections.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/_collections.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/connectionpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/connectionpool.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/fields.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/fields.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/filepost.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/filepost.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/poolmanager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/poolmanager.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/_collections.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/connection.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/connectionpool.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__pycache__/appengine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/__pycache__/appengine.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/__pycache__/socks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/__pycache__/socks.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/exceptions.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/fields.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/filepost.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/six.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/packages/ssl_match_hostname/_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/packages/ssl_match_hostname/_implementation.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/poolmanager.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/request.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/response.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__init__.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/queue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/queue.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/retry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/retry.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/ssl_.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/ssl_.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/timeout.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/timeout.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/url.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/url.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/__pycache__/wait.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/__pycache__/wait.cpython-38.pyc -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/connection.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/queue.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/request.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/response.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/retry.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/timeout.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/url.py -------------------------------------------------------------------------------- /source/custom-resource-helper/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/custom-resource-helper/urllib3/util/wait.py -------------------------------------------------------------------------------- /source/lib/cfnresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/digital-user-engagement-events-database/HEAD/source/lib/cfnresponse.py --------------------------------------------------------------------------------