Python calls MongoDB and pythonmongodb

Source: Internet
Author: User

Python calls MongoDB and pythonmongodb

Pymongo introduction:

Mongodb operating driver provided by python

Software acquisition: https://pypi.python.org/pypi/pymongo#downloads

Installation Method:

1st types: Download source code process Installation

#tar xf pymongo-2.7.2.tar.gz#md5\=bbd229fe0ff43ee130eed9ffa9db7353.gz # cd pymongo-2.7.2# python setup.py build# python setup.py install

2nd types: Borrow third-party plug-ins, pip or easy_install process to install http://api.mongodb.org/python/current/installation.html

Verification:

Create link:

>>> import pymongo>>> connection=pymongo.Connection('localhost',27017)


Use databases and collections:

db=connection.jacson  collection=db.jacson 
Add a single piece of data to a file:

jacson = {"name":"jacson","age":"27"}collection.insert(jacson) 
Add multiple data entries to a file:

jacson=[{"name":"laobaizhichuang","age":"1"},{"name":"jacson.bai","age":"27"}]  collection.insert(jacson)  


Confirm the result in the mongodb shell.


Reference: http://www.oschina.net/question/54100_27233

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.