gitextract_1wzmeifn/ ├── .bumpversion.cfg ├── .editorconfig ├── .github/ │ ├── SECURITY.md │ ├── dependabot.yml │ └── workflows/ │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ └── reference.md ├── mkdocs.yml ├── pyproject.toml ├── requirements-docs.txt ├── requirements.txt ├── ruff.toml ├── src/ │ └── dotenv/ │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── ipython.py │ ├── main.py │ ├── parser.py │ ├── py.typed │ ├── variables.py │ └── version.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_cli.py │ ├── test_fifo_dotenv.py │ ├── test_ipython.py │ ├── test_is_interactive.py │ ├── test_lib.py │ ├── test_main.py │ ├── test_parser.py │ ├── test_utils.py │ ├── test_variables.py │ └── test_zip_imports.py └── tox.ini