Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 583 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 583 Bytes

MongoDB_Py

MongoDB, the most popular NoSQL database, is a cross-platform, document-oriented database that works on the concept of collections and documents. MongoDB offers high speed, high availability, and high scalability.

A simple MongoDB document Structure:

{ title: 'MongoDB with Python', by: 'Amin siddique', url: 'https://in.linkedin.com/in/amin-siddique-464116156', type: 'NoSQL' }

Using Python's Pymongo we have various methods for fetching/inserting the data from mongodb. This repository will try to include codes related to python's usage around mongoDB