Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created November 1, 2019 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/2a72602609c7bef69a8a2b78211dc59b to your computer and use it in GitHub Desktop.
Save NMZivkovic/2a72602609c7bef69a8a2b78211dc59b to your computer and use it in GitHub Desktop.
class UserRepository(object):
def __init__(self):
mongoclient = MongoClient('localhost', 27017)
#mongoclient = MongoClient('mongodb://localhost:27017')
database = mongoclient.local
self._users = database.user
# Create operations
def insert(self, user):
return self._users.insert_one(user)
def insert_many(self, users):
return self._users.insert_many(users)
# Read operations
def read_all(self):
return self._users.find()
def read_many(self, conditions):
return self._users.find(conditions)
def read(self, conditions):
return self._users.find_one(conditions)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment