Created
August 15, 2020 20:55
-
-
Save hgodinez89/c2f6cfd298d046282335fc5ccf99d20f to your computer and use it in GitHub Desktop.
This file contains 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 shelve | |
repos = shelve.open("github_repos") | |
repos['SimpleBuy'] = ('hgodinez89', 'Online store', '1.0') | |
repos['login-app'] = ('hgodinez89', 'Login', '1.0') | |
print(repos['login-app']) | |
repos['login-app'] = ('hgodinez89', 'Login with Firebase', '1.0') | |
repos.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment