Skip to content

Instantly share code, notes, and snippets.

@thepycoach
Created May 18, 2022 17:48
Show Gist options
  • Save thepycoach/10c8d98e777ee501faa3fd3357d38485 to your computer and use it in GitHub Desktop.
Save thepycoach/10c8d98e777ee501faa3fd3357d38485 to your computer and use it in GitHub Desktop.
from decouple import config
username = config('username', default='')
password = config('password', default='')
print(username, password)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment