A utility package to make working with pymongo even easier
The package uses a single class named PymongoExpressClient. To use the interface, simply generate an object from this class:
from pymongo_express import PymongoExpressClient
myClient = PymongoExpressClient(
url=<url_of_the_db_instance>,
username=<your_username>
password=<your_password>
port=<port_of_the_db_instance>
)The PymongoExpressClient gives access to many simplified CRUD operations for you mongo DB.