Python Simple Method for connecting to MongoDB Database

Source: Internet
Author: User
This article mainly introduces how to connect Python to the MongoDB database, and analyzes the related skills of using the pymongo module to operate the MongoDB database in the form of instances, for more information about how to connect Python to a MongoDB database, see the following example. We will share this with you for your reference. The details are as follows:

Python uses pymongo to operate MongoDB databases. First install the pymongo module. The following example shows how to connect to the MongoDB database using pymongo with the username and password:

From pymongo import Export clientimport datetimeclient = MongoClient ('mongodb: // tanteng: 123456 @ localhost: 27017/') db = client. js_send_excelpost = {"author": "Xiaofeng", "text": "My first blog post! "," Tags ": [" mongodb "," python "," pymongo "],} posts = db. postspost_id = posts. insert_one (post). inserted_idprint (post_id)

If you are interested, refer to the official pymongo documentation for more Python operations on MongoDB.

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.