Created
September 7, 2016 11:23
-
-
Save jcm93/29ac51728d345766614d0a95d490e95f 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
class JSONDictionary: | |
def __init__(self): | |
self.db_file = open("database.txt", 'w') | |
self.user_db = json.loads(self.db_file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment