python-dotenv icon indicating copy to clipboard operation
python-dotenv copied to clipboard

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.

Results 108 python-dotenv issues
Sort by recently updated
recently updated
newest added

in src/dotenv/main.py, line 360.

Restores multiline support for unquoted environment variables that was inadvertently removed in commit 7b172fe during space parsing improvements. This enhancement allows load_dotenv() to correctly parse multiline values without quotes while...

ci: enable testing on Python 3.14t (free-threaded) alongside standard 3.14

[dev-environment.yml](https://github.com/user-attachments/files/21859862/dev-environment.yml) [dev-environment-with-pip.yml](https://github.com/user-attachments/files/21859863/dev-environment-with-pip.yml) [README.md](https://github.com/user-attachments/files/21859860/README.md) [show_dotenv_issue.py](https://github.com/user-attachments/files/21859861/show_dotenv_issue.py) # Python dotenv issue System used for issue: - WSL2 on Windows 11 Enterprise with Ubuntu 22.04 Requirements: - `conda` version `24.9.2` (installed via `miniconda`) -...

## Feature Idea: Web UI for .env File Management I've created a local web dashboard for managing .env files and I'm wondering if there's interest in having something similar for...

# Add `unlink_after_load` parameter to `load_dotenv()` function ## Summary This PR adds a new optional boolean parameter `unlink_after_load` to the `load_dotenv()` function that allows users to automatically remove the .env...

Il the access of .env file is refused, a PermissionError is raise. It's the case with firejail to protect the access of .env files. The code may tolerate this situation...

## Background There are certain situations where a string `${xxxxxxxx}` should not be a candidate for variable substitution. This is very common in Spring Boot applications where `${a.b.c.d}` is property...