Created
February 19, 2019 06:02
-
-
Save qqpann/40c54ac36a7560adafb9eecebf997c9f to your computer and use it in GitHub Desktop.
[Dotenv snippet] python dotenv snippet #python #dotenv #env
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from pathlib import Path | |
from dotenv import load_dotenv | |
env_path = Path('.') / '.env' | |
load_dotenv(dotenv_path=env_path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment