Skip to content

Commit 3c19c03

Browse files
authoredMar 9, 2025··
s/Python-dotenv/python-dotenv/ (#516)
This commit uses the name `python-dotenv` instead of `Python-dotenv` in the README.md file
1 parent 4159388 commit 3c19c03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status][build_status_badge]][build_status_link]
44
[![PyPI version][pypi_badge]][pypi_link]
55

6-
Python-dotenv reads key-value pairs from a `.env` file and can set them as environment
6+
python-dotenv reads key-value pairs from a `.env` file and can set them as environment
77
variables. It helps in the development of applications following the
88
[12-factor](https://12factor.net/) principles.
99

@@ -29,7 +29,7 @@ If your application takes its configuration from environment variables, like a 1
2929
application, launching it in development is not very practical because you have to set
3030
those environment variables yourself.
3131

32-
To help you with that, you can add Python-dotenv to your application to make it load the
32+
To help you with that, you can add python-dotenv to your application to make it load the
3333
configuration from a `.env` file when it is present (e.g. in development) while remaining
3434
configurable via the environment:
3535

@@ -201,7 +201,7 @@ empty string.
201201

202202
### Variable expansion
203203

204-
Python-dotenv can interpolate variables using POSIX variable expansion.
204+
python-dotenv can interpolate variables using POSIX variable expansion.
205205

206206
With `load_dotenv(override=True)` or `dotenv_values()`, the value of a variable is the
207207
first of the values defined in the following list:

0 commit comments

Comments
 (0)
Please sign in to comment.