Skip to main content

poetry-plugin-dotenv - is the plugin that automatically loads environment variables from a dotenv file into the environment before poetry commands are run.

Project description

logo

License Python PyPI Release

Semantic_Release Imports Ruff mypy

Tests Linters Release Codecov

Downloads Stars

StandWithUkraine StandWithUkraine

Overview

poetry-plugin-dotenv - is the plugin that automatically loads environment variables from a dotenv file into the environment before poetry commands are run.

Features

  • Fully type safe
  • Doesn't require any dependencies
  • Supports templates, interpolating variables using POSIX variable expansions
  • Supports --directory - working directory for the poetry command
  • Supports multiple configuration sources
  • Supports configuration auto-completion and validation in IDEs such as Visual Studio Code or PyCharm (part of JSON Schema Store)

Installation

poetry self add poetry-plugin-dotenv@latest

[!TIP] New releases supports only Python 3.9+. If you want to use poetry-plugin-dotenv with Python 3.8 please install version 2.4.0 using poetry self add poetry-plugin-dotenv@2.4.0

Usage and Configuration

By default, the plugin will load the .env file from the current working directory or "higher directories".

ignore

Type: str

Default: false

Allowed values (as True): y / yes / t / on / 1 / true

Allowed values (as False): n / no / f / off / 0 / false

Prevents poetry from loading the dotenv file.

location

Type: str

Default: .env

If your dotenv file is located in a different path or has a different name you may set this parameter.

Configuration via TOML file

The plugin is able to read project-specific default values for its options from a pyproject.toml file. By default, poetry-plugin-dotenv looks for pyproject.toml containing a [tool.poetry.plugins.dotenv] section.

Example pyproject.toml:

[tool.poetry.plugins.dotenv]
ignore = "false"
location = ".env.dev"

[!IMPORTANT] Due to the default poetry parser, options in the plugins sections should be always strings.

As it was mentioned in the Features list, the schema of the plugin configuration is now part of the JSON Schema Store which brings auto-completion and validation in IDEs such as Visual Studio Code or PyCharm "out of the box".

https://github.com/pivoshenko/poetry-plugin-dotenv/assets/40499728/15d3a988-a723-49f8-960d-f91cd6bfe536

Configuration via environment variables

poetry-plugin-dotenv supports the following configuration options via environment variables.

  • POETRY_PLUGIN_DOTENV_LOCATION
  • POETRY_PLUGIN_DOTENV_IGNORE

[!IMPORTANT] Due to the nature of environment variables, options should be always strings.

Lookup hierarchy

A pyproject.toml can override default values. Options provided by the user via environment variables override both.

Examples

demo
# .env
DB__HOST=localhost
DB__DBNAME=local_lakehouse
DB__USER=volodymyr
DB__PASSWORD=super_secret_password
DB__ENGINE=postgresql://${DB__USER}:${DB__PASSWORD}@${DB__HOST}/${DB__DBNAME}
# .env.dev
DB__HOST=dev.host
DB__DBNAME=dev_lakehouse
DB__USER=svc_team
DB__PASSWORD=super_secret_password
DB__ENGINE=postgresql://${DB__USER}:${DB__PASSWORD}@${DB__HOST}/${DB__DBNAME}
# pyroject.toml
[tool.poetry.plugins.dotenv]
location = ".env.dev"
# main.py
from __future__ import annotations

import os


if __name__ == "__main__":
    try:
        print(f"Host: {os.environ['DB__HOST']!r}")
        print(f"Name: {os.environ['DB__DBNAME']!r}")
        print(f"Username: {os.environ['DB__USER']!r}")
        print(f"Password: {os.environ['DB__PASSWORD']!r}")
        print(f"Engine: {os.environ['DB__ENGINE']!r}")

    except KeyError:
        print("Environment variables not set!")
poetry run -vvv python main.py
# Loading environment variables from '.env'.
# Host: 'localhost'
# Name: 'local_lakehouse'
# Username: 'volodymyr'
# Password: 'super_secret_password'
# Engine: 'postgresql://volodymyr:super_secret_password@localhost/local_lakehouse'

# set location section in pyproject.toml
poetry run -vvv python main.py
# Loading environment variables from '.env.dev'.
# Host: 'dev.host'
# Name: 'dev_lakehouse'
# Username: 'svc_team'
# Password: 'super_secret_password'
# Engine: 'postgresql://svc_team:super_secret_password@dev.host/dev_lakehouse'

# set ignore = "true" in pyproject.toml
poetry run -vvv python main.py
# Not loading environment variables.
# Environment variables not set!

export POETRY_PLUGIN_DOTENV_LOCATION=.env.dev && poetry run -vvv python main.py
# Loading environment variables from '.env.dev'.
# Host: 'dev.host'
# Name: 'dev_lakehouse'
# Username: 'svc_team'
# Password: 'super_secret_password'
# Engine: 'postgresql://svc_team:super_secret_password@dev.host/dev_lakehouse'

export POETRY_PLUGIN_DOTENV_IGNORE=true && poetry run -vvv python main.py
# Not loading environment variables.
# Environment variables not set!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

poetry_plugin_dotenv-2.5.0.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

poetry_plugin_dotenv-2.5.0-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file poetry_plugin_dotenv-2.5.0.tar.gz.

File metadata

  • Download URL: poetry_plugin_dotenv-2.5.0.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for poetry_plugin_dotenv-2.5.0.tar.gz
Algorithm Hash digest
SHA256 7508f4b0853a6af58d2feb3bc94d616b1096a5ca90277b703abe6a29e30c4e6b
MD5 79eefd123f5c4394d3d7cef8e8708672
BLAKE2b-256 451758169543a0d4bcca9074e2beeb5aaab307a59d2b1a37b65da920e147b553

See more details on using hashes here.

File details

Details for the file poetry_plugin_dotenv-2.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for poetry_plugin_dotenv-2.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bf0aa27f0dd70b4228a26c2e939a5eecb3ab0b4cf063482919a83bec58dd3012
MD5 21ed9802ae7ee8b30274de42e18cfba6
BLAKE2b-256 3c90c51c24695de2f9f77beca5178de788be80f7f19abd44002def08f739d38f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page