Skip to content

Instantly share code, notes, and snippets.

@khuyentran1401
Created June 28, 2022 20:45
Show Gist options
  • Save khuyentran1401/a343f3df19814f0088f1654522119cdb to your computer and use it in GitHub Desktop.
Save khuyentran1401/a343f3df19814f0088f1654522119cdb to your computer and use it in GitHub Desktop.
from dotenv import load_dotenv
def get_authentication():
load_dotenv()
username = os.getenv("username")
token = os.getenv("token")
return {"username": username, "token": token}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment