├── .editorconfig ├── .github └── workflows │ ├── main.yml │ └── python-publish.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── decouple.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── autoconfig │ ├── env │ │ ├── .env │ │ ├── custom-path │ │ │ └── .env │ │ └── project │ │ │ └── empty.txt │ ├── ini │ │ └── project │ │ │ ├── settings.ini │ │ │ └── subdir │ │ │ └── empty.py │ └── no_repository │ │ └── empty.txt ├── secrets │ ├── db_password │ └── db_user ├── test_autoconfig.py ├── test_env.py ├── test_helper_choices.py ├── test_helper_csv.py ├── test_ini.py ├── test_secrets.py └── test_strtobool.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/README.rst -------------------------------------------------------------------------------- /decouple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/decouple.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license-file = LICENSE 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | -------------------------------------------------------------------------------- /tests/autoconfig/env/.env: -------------------------------------------------------------------------------- 1 | KEY=ENV 2 | -------------------------------------------------------------------------------- /tests/autoconfig/env/custom-path/.env: -------------------------------------------------------------------------------- 1 | KEY=CUSTOMPATH 2 | -------------------------------------------------------------------------------- /tests/autoconfig/env/project/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/autoconfig/ini/project/settings.ini: -------------------------------------------------------------------------------- 1 | [settings] 2 | KEY=INI 3 | -------------------------------------------------------------------------------- /tests/autoconfig/ini/project/subdir/empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/autoconfig/no_repository/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/secrets/db_password: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /tests/secrets/db_user: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/test_autoconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tests/test_autoconfig.py -------------------------------------------------------------------------------- /tests/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tests/test_env.py -------------------------------------------------------------------------------- /tests/test_helper_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tests/test_helper_choices.py -------------------------------------------------------------------------------- /tests/test_helper_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tests/test_helper_csv.py -------------------------------------------------------------------------------- /tests/test_ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tests/test_ini.py -------------------------------------------------------------------------------- /tests/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tests/test_secrets.py -------------------------------------------------------------------------------- /tests/test_strtobool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tests/test_strtobool.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBNetwork/python-decouple/HEAD/tox.ini --------------------------------------------------------------------------------