Skip to content

Instantly share code, notes, and snippets.

@qqpann
Created February 19, 2019 06:02
Show Gist options
  • Save qqpann/40c54ac36a7560adafb9eecebf997c9f to your computer and use it in GitHub Desktop.
Save qqpann/40c54ac36a7560adafb9eecebf997c9f to your computer and use it in GitHub Desktop.
[Dotenv snippet] python dotenv snippet #python #dotenv #env
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