We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e92f6e commit 2b2f152Copy full SHA for 2b2f152
1 file changed
README.md
@@ -1 +1,29 @@
1
-# python-dotenvx
+[](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 [](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