Skip to content

Instantly share code, notes, and snippets.

@hgodinez89
Created August 15, 2020 20:55
Show Gist options
  • Save hgodinez89/c2f6cfd298d046282335fc5ccf99d20f to your computer and use it in GitHub Desktop.
Save hgodinez89/c2f6cfd298d046282335fc5ccf99d20f to your computer and use it in GitHub Desktop.
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