Skip to content

Abhishek1098/PythonMangoDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

PythonMangoDB

Using python to Create DB, Create Collection, Inest, Find, Query, Sort, Delete, Drop Collection, Update, and Limit

Python can be used in database applications.

One of the most popular NoSQL database is MongoDB.

MongoDB

MongoDB stores data in JSON-like documents, which makes the database very flexible and scalable.

To be able to experiment with the code examples in this tutorial, you will need access to a MongoDB database.

You can download a free MongoDB database at https://www.mongodb.com.

Or get started right away with a MongoDB cloud service at https://www.mongodb.com/cloud/atlas.

PyMongo

Python needs a MongoDB driver to access the MongoDB database.

In this tutorial we will use the MongoDB driver "PyMongo".

We recommend that you use PIP to install "PyMongo".

PIP is most likely already installed in your Python environment.

Navigate your command line to the location of PIP, and type the following:

python -m pip install pymongo

Test PyMongo

To test if the installation was successful, or if you already have "pymongo" installed, create a Python page with the following content:

import pymongo

About

Using python to Create DB, Create Collection, Insert, Find, Query, Sort, Delete, Drop Collection, Update, and Limit

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages