

Detailed discussion of PyMongo library is available at. New database is created with the following statement −ĬRUD operations on this database are performed with methods such as insert_one() (or insert_many()), find(), update() and delete() methods. It is called PyMongo whose usage is similar to standard SQL queries.Īfter installing PyMongo module, we need object of MongoClient class for interacting with MongoDB server.

provides a Python driver for connection with MongoDB databases. Note that, just as a table in relational database has a primary key, document in MongoDB database has a special key called " _id" that is automatically generated. You can add document directly or import from CSV or JSON file.Ĭhoose Insert Document from Add data drop down.ĭocuments added will be displayed in JSON, list or tabular form −

Connect to the local server by giving correct host and port number.Īll the databases currently available will be listed as below −Ĭlick on + button (shown at the bottom of left panel) to create new database.Ĭhoose name of database from list and select a Collection as shown below − It helps in many activities such as indexing, document validation, etc.ĭownload community edition of MongoDB Compass from and start MongoDBCompassCommunity.exe (Ensure that MongoDB server is running before starting Compass). It is a convenient tool for performing all CRUD operations without manually writing queries. MongoDB has also developed a GUI tool for handling MongoDB databases. MongoEngine - Connecting to MongoDB Database.
