Skip to content

Commit 2b2f152

Browse files
committed
update README
1 parent 3e92f6e commit 2b2f152

1 file changed

Lines changed: 29 additions & 1 deletion

File tree

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
# python-dotenvx
1+
[![dotenvx](https://dotenvx.com/better-banner.png)](https://dotenvx.com)
2+
3+
*a better dotenv*–from the creator of [`dotenv`](https://github.com/motdotla/dotenv).
4+
5+
* run anywhere (cross-platform)
6+
* multi-environment
7+
* encrypted envs
8+
9+
 
10+
11+
12+
### Quickstart [![PyPI version](https://badge.fury.io/py/python-dotenvx.svg)](http://badge.fury.io/py/python-dotenvx)
13+
14+
Install and use it in code just like `python-dotenv`.
15+
16+
```sh
17+
pip install python-dotenv
18+
```
19+
```python
20+
# main.py
21+
import os
22+
from dotenvx import load_dotenvx
23+
load_dotenvx() # take environment variables from .env.
24+
25+
print(os.getenv("S3_BUCKET"))
26+
```
27+
28+
 
29+

0 commit comments

Comments
 (0)