Created
November 1, 2019 12:23
-
-
Save NMZivkovic/28b1ff2c72570653319e59f3cbe75b85 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
class UserRepository(object): | |
def __init__(self): | |
mongoclient = MongoClient('localhost', 27017) | |
#mongoclient = MongoClient('mongodb://localhost:27017') | |
database = mongoclient.local | |
self._users = database.user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment