January 2019
Intermediate to advanced
390 pages
9h 16m
English
The Not Only Structured Query Language (NoSQL) database is not a relational database; instead, data can be stored in key-value, JSON, document, columnar, or graph formats. They are frequently used in big data and real-time applications. We will learn here how to access NoSQL data using MongoDB, and we assume you have the MongoDB server configured properly and on:
from pymongo import MongoClientclient = MongoClient()db = client.test
Read now
Unlock full access