theskumar/python-dotenv

Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 60 minutes ago
Added to GitGenius on September 7th, 2026
Created on September 6th, 2014
Open Issues & Pull Requests: 113 (+0)
GitHub issues: Enabled
Number of forks: 572
Total Stargazers: 8,868 (+0)
Total Subscribers: 40 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 5.1 days
Mean response time: 66.9 days
90th percentile: 174.9 days
Tracked items: 65

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 100% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 4% of issues opened in the past year have been closed. Three people close 67% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 30
New in 7 days: 1
Closed in 7 days: 0
Avg open age: 519 days
Stale 30+ days: 25
Stale 90+ days: 24

Recent activity

Opened in 7 days: 1
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 1

Top labels

  • help wanted (1)

Detailed Description

python-dotenv is a configuration management tool that reads key-value pairs from a .env file and sets them as environment variables.

The tool solves the problem of managing environment-specific configuration during development without hardcoding secrets or settings into source code. It works by parsing a .env file in your project directory and loading the variables it contains into the application's environment, following the 12-factor application methodology which treats configuration as something that varies between deployments and should be stored separately from code.

Developers building Python applications that need to separate configuration from code should consider this tool, particularly when following 12-factor principles or working in teams where different environments require different settings. It suits any project that uses environment variables for configuration, from simple scripts to larger applications, and is especially useful during local development where creating actual environment variables manually would be tedious.

The project maintains a steady stream of updates and bug fixes addressing user-reported issues. Pull requests receive timely review and feedback from maintainers. The codebase shows active maintenance with regular attention to compatibility and edge cases reported by users. Documentation is kept current alongside code changes.