Created
May 18, 2022 17:48
-
-
Save thepycoach/10c8d98e777ee501faa3fd3357d38485 to your computer and use it in GitHub Desktop.
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
| 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