davidlatwe / montydb

Monty, Mongo tinified. MongoDB implemented in Python !

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement basic CRUD methods

davidlatwe opened this issue · comments

  • db.collection.insert_one()
  • db.collection.insert_many()
  • db.collection.find()
  • db.collection.update_one()
  • db.collection.update_many()
  • db.collection.replace_one()
  • db.collection.delete_one()
  • db.collection.delete_many()

All implemented.