Skip to content

Commit c8b7435

Browse files
authored
Update README.md
1 parent 8badbfd commit c8b7435

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# python-dotenv
1+
# royman-dotenv
22

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+
royman-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

@@ -22,14 +22,14 @@ variables. It helps in the development of applications following the
2222
## Getting Started
2323

2424
```shell
25-
pip install python-dotenv
25+
pip install royman-dotenv
2626
```
2727

2828
If your application takes its configuration from environment variables, like a 12-factor
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 royman-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

@@ -53,7 +53,7 @@ project:
5353
└── foo.py
5454
```
5555

56-
The syntax of `.env` files supported by python-dotenv is similar to that of Bash:
56+
The syntax of `.env` files supported by royman-dotenv is similar to that of Bash:
5757

5858
```bash
5959
# Development settings
@@ -140,7 +140,7 @@ A CLI interface `dotenv` is also included, which helps you manipulate the `.env`
140140
without manually opening it.
141141

142142
```shell
143-
$ pip install "python-dotenv[cli]"
143+
$ pip install "royman-dotenv[cli]"
144144
$ dotenv set USER foo
145145
$ dotenv set EMAIL [email protected]
146146
$ dotenv list
@@ -201,7 +201,7 @@ empty string.
201201

202202
### Variable expansion
203203

204-
python-dotenv can interpolate variables using POSIX variable expansion.
204+
royman-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:
@@ -238,10 +238,10 @@ defined in the following list:
238238
This project is currently maintained by [Saurabh Kumar](https://saurabh-kumar.com) and
239239
[Bertrand Bonnefoy-Claudet](https://github.com/bbc2) and would not have been possible
240240
without the support of these [awesome
241-
people](https://github.com/theskumar/python-dotenv/graphs/contributors).
241+
people](https://github.com/roymanigley/royman-dotenv/graphs/contributors).
242242

243-
[build_status_badge]: https://github.com/theskumar/python-dotenv/actions/workflows/test.yml/badge.svg
244-
[build_status_link]: https://github.com/theskumar/python-dotenv/actions/workflows/test.yml
245-
[pypi_badge]: https://badge.fury.io/py/python-dotenv.svg
246-
[pypi_link]: https://badge.fury.io/py/python-dotenv
243+
[build_status_badge]: https://github.com/roymanigley/royman-dotenv/actions/workflows/test.yml/badge.svg
244+
[build_status_link]: https://github.com/roymanigley/royman-dotenv/actions/workflows/test.yml
245+
[pypi_badge]: https://badge.fury.io/py/royman-dotenv.svg
246+
[pypi_link]: https://badge.fury.io/py/royman-dotenv
247247
[python_streams]: https://docs.python.org/3/library/io.html

0 commit comments

Comments
 (0)