├── .editorconfig ├── .github ├── dependabot.yml ├── workflows │ └── test.yml └── zizmor.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py └── index.rst ├── dump_env ├── __init__.py ├── cli.py ├── dumper.py └── exceptions.py ├── poetry.lock ├── pyproject.toml ├── setup.cfg └── tests ├── __snapshots__ └── test_logics.ambr ├── conftest.py ├── fixtures └── .env.example ├── test_cli ├── __snapshots__ │ ├── test_escape.ambr │ └── test_multiline.ambr ├── test_e2e.py ├── test_escape.py ├── test_general.py ├── test_help.py ├── test_multiline.py ├── test_source.py └── test_strict.py └── test_logics.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/.github/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/docs/index.rst -------------------------------------------------------------------------------- /dump_env/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dump_env/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/dump_env/cli.py -------------------------------------------------------------------------------- /dump_env/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/dump_env/dumper.py -------------------------------------------------------------------------------- /dump_env/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/dump_env/exceptions.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__snapshots__/test_logics.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/__snapshots__/test_logics.ambr -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/fixtures/.env.example -------------------------------------------------------------------------------- /tests/test_cli/__snapshots__/test_escape.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/__snapshots__/test_escape.ambr -------------------------------------------------------------------------------- /tests/test_cli/__snapshots__/test_multiline.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/__snapshots__/test_multiline.ambr -------------------------------------------------------------------------------- /tests/test_cli/test_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/test_e2e.py -------------------------------------------------------------------------------- /tests/test_cli/test_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/test_escape.py -------------------------------------------------------------------------------- /tests/test_cli/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/test_general.py -------------------------------------------------------------------------------- /tests/test_cli/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/test_help.py -------------------------------------------------------------------------------- /tests/test_cli/test_multiline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/test_multiline.py -------------------------------------------------------------------------------- /tests/test_cli/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/test_source.py -------------------------------------------------------------------------------- /tests/test_cli/test_strict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_cli/test_strict.py -------------------------------------------------------------------------------- /tests/test_logics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/dump-env/HEAD/tests/test_logics.py --------------------------------------------------------------------------------