├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── linting.yml │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── NOTICE ├── README.md ├── appconfig_helper ├── __init__.py ├── appconfig_helper.py ├── py.typed └── version.py ├── example ├── appconfig-resources-stack.yml ├── main.py └── requirements.txt ├── poetry.lock ├── pyproject.toml ├── setup.cfg ├── tests └── test_main.py └── tox.ini /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .tox 2 | dist 3 | *.egg-info 4 | .python-version 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/README.md -------------------------------------------------------------------------------- /appconfig_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/appconfig_helper/__init__.py -------------------------------------------------------------------------------- /appconfig_helper/appconfig_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/appconfig_helper/appconfig_helper.py -------------------------------------------------------------------------------- /appconfig_helper/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /appconfig_helper/version.py: -------------------------------------------------------------------------------- 1 | VERSION = "2.0.2" 2 | -------------------------------------------------------------------------------- /example/appconfig-resources-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/example/appconfig-resources-stack.yml -------------------------------------------------------------------------------- /example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/example/main.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn 3 | sample-helper-aws-appconfig 4 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | ignore = E501 4 | -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-python-helper-aws-appconfig/HEAD/tox.ini --------------------------------------------------------------------------------