search
HomeBackend DevelopmentPython TutorialDetailed explanation of the use summary of PyMongo in python

This article mainly introduces the summary of the use of PyMongo in python, and introduces the use of the PyMongo module in detail. It has certain reference value. Those who are interested can learn more

What is PyMongo

PyMongo is a driver program that enables python programs to use the Mongodb database and is written in python.

Installation

Environment: Ubuntu 14.04+python2.7+MongoDB 2.4

Go first Download the software package from the official website, click on the address to open the link. After decompressing, enter and use python setup.py install to install

or use pip to install pip -m install pymongo

Basic use

Create a connection

import pymongo 
client = pymongo.MongoClient('localhost', 27017)

Or you can do this

import pymongo 
client = MongoClient('mongodb://localhost:27017/')

Connect database

db = client.mydb 
#或者
db = client['mydb']

Connect aggregation

Aggregation is equivalent to a table in relational database

collection = db.my_collection 
#或者
collection = db['my_collection']

View all aggregation names under the database

db.collection_names()

Insert record

collection.insert({"key1":"value1","key2","value2"})

Delete record

Delete all

collection.remove()

Delete by condition

collection.remove({"key1":"value1"})

UpdateRecord

Copy code The code is as follows:

collection.update({"key1": "value1"}, {"$set": {"key2": "value2", "key3": "value3"}})

Query records

Query a record: find_one() does not Returns the first record with any parameters. With parameters, search returns according to conditions

collection.find_one() 
collection.find_one({"key1":"value1"})

Query multiple records: find() returns all records without parameters, and with parameters, search returns according to conditions

collection.find() 
collection.find({"key1":"value1"})

View multiple records gathered

for item in collection.find():   
  print item

View the total number of aggregated records

print collection.find().count()

Query result sorting

Sort on a single column

collection.find().sort("key1") # 默认为升序 
collection.find().sort("key1", pymongo.ASCENDING) # 升序 
collection.find().sort("key1", pymongo.DESCENDING) # 降序

Sort on multiple columns

Copy code The code is as follows:

collection.find().sort([("key1", pymongo.ASCENDING), ("key2", pymongo.DESCENDING)])

Example 1:

#!/usr/bin/env python
#coding:utf-8
# Author:  --<qingfengkuyu>
# Purpose: MongoDB的使用
# Created: 2014/4/14
#32位的版本最多只能存储2.5GB的数据(NoSQLFan:最大文件尺寸为2G,生产环境推荐64位)
 
import pymongo
import datetime
import random
 
#创建连接
conn = pymongo.Connection(&#39;10.11.1.70&#39;,27017)
#连接数据库
db = conn.study
#db = conn[&#39;study&#39;]
 
#打印所有聚集名称,连接聚集
print u&#39;所有聚集:&#39;,db.collection_names()
posts = db.post
#posts = db[&#39;post&#39;]
print posts
 
#插入记录
new_post = {"AccountID":22,"UserName":"libing",&#39;date&#39;:datetime.datetime.now()}
new_posts = [{"AccountID":22,"UserName":"liuw",&#39;date&#39;:datetime.datetime.now()},
       {"AccountID":23,"UserName":"urling",&#39;date&#39;:datetime.datetime.now()}]#每条记录插入时间都不一样
 
posts.insert(new_post)
#posts.insert(new_posts)#批量插入多条数据
 
#删除记录
print u&#39;删除指定记录:\n&#39;,posts.find_one({"AccountID":22,"UserName":"libing"})
posts.remove({"AccountID":22,"UserName":"libing"})
 
#修改聚集内的记录
posts.update({"UserName":"urling"},{"$set":{&#39;AccountID&#39;:random.randint(20,50)}})
 
#查询记录,统计记录数量
print u&#39;记录总计为:&#39;,posts.count(),posts.find().count()
print u&#39;查询单条记录:\n&#39;,posts.find_one()
print posts.find_one({"UserName":"liuw"})
 
#查询所有记录
print u&#39;查询多条记录:&#39;
#for item in posts.find():#查询全部记录
#for item in posts.find({"UserName":"urling"}):#查询指定记录
#for item in posts.find().sort("UserName"):#查询结果根据UserName排序,默认为升序
#for item in posts.find().sort("UserName",pymongo.ASCENDING):#查询结果根据UserName排序,ASCENDING为升序,DESCENDING为降序
for item in posts.find().sort([("UserName",pymongo.ASCENDING),(&#39;date&#39;,pymongo.DESCENDING)]):#查询结果根据多列排序
  print item
 
#查看查询语句的性能
#posts.create_index([("UserName", pymongo.ASCENDING), ("date", pymongo.DESCENDING)])#加索引
print posts.find().sort([("UserName",pymongo.ASCENDING),(&#39;date&#39;,pymongo.DESCENDING)]).explain()["cursor"]#未加索引用BasicCursor查询记录
print posts.find().sort([("UserName",pymongo.ASCENDING),(&#39;date&#39;,pymongo.DESCENDING)]).explain()["nscanned"]#查询语句执行时查询的记录数

The above is the detailed content of Detailed explanation of the use summary of PyMongo in python. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft