MongoDB interacts with Python

Source: Internet
Author: User
Tags mongoclient

1. Preparatory work

Installing the Pymongo module

PIP3 Install Pymongo

2. Connect MongoDB

Import Pymongo

No authentication connection: client = Pymongo. Mongoclient ("Mongodb://host:port/dbname")

There is an authentication connection: client = Pymongo. Mongoclient ("Mongodb://username:[email protected]:p ort/dbname")

3. specifying databases and collections

db = Client.school

Collection = Db.class02

4. Inserting data

Insert Single data: Collection.insert_one ({dictionary})

Insert more than one data: Collection.insert_many ([{Dictionary 1},{Dictionary 2},...])

5. Updating data

Update single data: Collection.update_one ({condition},{"$set": {The key to update: The value to update}})

Update multiple data: Collection.update_many ({condition},{"$set": {The key to update: The value to update}})

6. Delete data

Delete Single data: Collection.delete_one ({condition})

Delete more than one data: Collection.delete_many ({condition})

MongoDB interacts with Python

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.