theskumar / theskumar/python-dotenv

Add `strict` parameter to `load_dotenv()` and `dotenv_values()` for fail-fast behavior

Open
#631 3 comments 1 reaction 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Python
Stars
8.9k
Forks
581
PR merge metrics
No merged PRs in 30d

Description

Problem

python-dotenv currently fails silently in two critical scenarios:

1. Missing .env file — no error raised
load_dotenv("/wrong/path/.env")  # Returns False silently
# App continues with no config — production incident waiting to happen

While PR #388 improved this to return False (previously returned True), almost no one checks the return value. The common pattern is just load_dotenv() at the top of a module.

2. Invalid lines — silently logged as warnings
# .env file contains a typo (colon instead of equals):
# DATABASE_URL: postgres://localhost/db
load_dotenv()  # DATABASE_URL is silently missing
# App falls back to a default or crashes later with a confusing error

As described in PR #520: "I dealt with an .env file that accidentally contained an unparsable line. The software then set a default value and I almost wrote to a wrong database."

Community Demand

This is one of the most requested features, spanning multiple years:

  • #467 — "Raise exceptions when encountering errors in files" (open, 2023)
  • #297 — "requireFile option for strict checking of env file existence" (closed without implementation)
  • #321 — "load_dotenv() returns True even if .env file is not found" (partially fixed by #388)
  • #520 — Open PR implementing parse-error exceptions (not yet merged)
  • #591 — "Exception or Warning on Duplicate Configuration Items" (open, 2025)
  • #164 — "dotenv_load with bad file path doesn't error" (2019)

The DEV Community article "Why load_dotenv() Is an Anti-Pattern" (2025) specifically calls out silent failures as the primary reason developers migrate away from python-dotenv to alternatives like pydantic-settings.

Proposal

Add a strict parameter (default False) to load_dotenv() and dotenv_values():

# Existing behavior preserved (strict=False by default)
load_dotenv()  # silent on missing file or parse errors

# Opt-in strict mode
load_dotenv(strict=True)  # raises on missing file or parse errors
Behavior with strict=True:
Scenario Current behavior With strict=True
.env file not found Returns False silently Raises FileNotFoundError
Invalid/unparseable line logger.warning() Raises ValueError with line number
Everything OK Returns True Returns True (unchanged)
Interaction with verbose

strict takes precedence over verbose. When both are True, the exception is raised without emitting a warning first — logging the same message before raising would be an anti-pattern (the exception already carries the information). When strict=False, verbose continues to work as before.

strict verbose Missing file behavior
False False Silent (returns False)
False True logger.info() warning
True False Raises FileNotFoundError
True True Raises FileNotFoundError (no warning logged)
Design Philosophy — Parser Correctness, Not Config Validation

This proposal intentionally stays within python-dotenv's existing philosophy of "populate what is available, let consuming code validate requirements." strict mode does not validate whether specific keys exist, whether values are the correct type, or whether the configuration is "complete" — that is the domain of tools like pydantic-settings.

What strict does is make python-dotenv honest about its own job: "did the file I was asked to read exist?" and "could I parse every line in it?" These are parser-level guarantees, not application-level config validation. The library should be able to tell you when it failed to do what you asked, rather than silently pretending everything is fine.

Backwards Compatibility
  • 100% backwards compatible — defaults to False, no behavior change for existing users
  • Opt-in only — users must explicitly pass strict=True
Scope

This addresses the umbrella of issues (#467, #297, #520, #591) with a single, clean API addition. The implementation touches main.py only (~20-30 lines), plus tests.

Related: #467, #297, #321, #520, #591, #164

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reading main.py, focusing on load_dotenv() and dotenv_values(), then inspect the existing tests for missing files, parse warnings, and verbose behavior. Add coverage for strict=True and the strict/verbose combinations described in the issue; done means missing files and invalid lines raise the specified exceptions while default behavior remains unchanged.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
tooling
Issue type
Feature
Difficulty
3/5
Estimated time
1-2 days
Activity status
Quiet
Clarity
Clearly specified
Newbie friendliness
68/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.