Python 使用pymongo操作mongodb库

1,安装python3.5

如果python还没有安装,可以直接用yum安装,

 

# 不过安装的是2.6 version
yum install -y python

 

 

 

 

源码安装3.5

 

wget https://www.python.org/ftp/python/3.5.0/Python-3.5.0.tgz
tar -xvf Python-3.5.0.tgz
cd Python-3.5.0
./configure --prefix=/usr/local--enable-shared
make
make install
ln -s /usr/local/bin/python3 /usr/bin/python3

 

 

 

 

 

 

运行Python之前需要配置库

echo /usr/local/lib >> /etc/ld.so.conf.d/local.conf

ldconfig

 

运行演示

python3 --version
 

 

部分执行过程:

 

[root@03_sdwm Python-3.5.0]# echo/usr/local/lib >> /etc/ld.so.conf.d/local.conf
[root@03_sdwm Python-3.5.0]# ldconfig
[root@03_sdwm Python-3.5.0]#
[root@03_sdwm Python-3.5.0]#
[root@03_sdwm Python-3.5.0]# python3--version
Python 3.5.0
[root@03_sdwm Python-3.5.0]#

 

 

 

 

 

 

 

2,安装pymongo

安装方法有2种,分别是Installing with pip和Installing with easy_install,这里采用Installing witheasy_install参考官方文章:

http://api.mongodb.com/python/current/installation.html#installing-with-easy-install

 

安装python pymongo

 

[root@03_sdwm ~]# python3 -m easy_install pymongo
Searching for pymongo
Reading http://pypi.python.org/simple/pymongo/
Best match: pymongo 3.4.0
Downloading https://pypi.python.org/packages/82/26/f45f95841de5164c48e2e03aff7f0702e22cef2336238d212d8f93e91ea8/pymongo-3.4.0.tar.gz#md5=aa77f88e51e281c9f328cea701bb6f3e
Processing pymongo-3.4.0.tar.gz
Running pymongo-3.4.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-ZZv1Ig/pymongo-3.4.0/egg-dist-tmp-LRDmoy
zip_safe flag not set; analyzing archive contents...
Adding pymongo 3.4.0 to easy-install.pth file
 
Installed /usr/lib/python2.6/site-packages/pymongo-3.4.0-py2.6-linux-x86_64.egg
Processing dependencies for pymongo
Finished processing dependencies for pymongo
[root@03_sdwm ~]#


 

 

 

 

3,使用pymongo操作mongodb

进行一些简单的对mongodb库的操作

 

#!/usr/bin/env python
# -*- coding: utf-8 -*-
 
import pymongo
import datetime
 
 
def get_db():
    # 建立连接
    client = pymongo.MongoClient(host="10.244.25.180", port=27017)
    db = client['example']
    #或者 db = client.example
    return db
 
 
def get_collection(db):
    # 选择集合(mongo中collection和database都是延时创建的)
    coll = db['informations']
    print db.collection_names()
    return coll
 
 
def insert_one_doc(db):
    # 插入一个document
    coll = db['informations']
    information = {"name": "quyang", "age": "25"}
    information_id = coll.insert(information)
    print information_id
 
 
def insert_multi_docs(db):
    # 批量插入documents,插入一个数组
    coll = db['informations']
    information = [{"name": "xiaoming", "age": "25"}, {"name": "xiaoqiang", "age": "24"}]
    information_id = coll.insert(information)
    print information_id
 
 
def get_one_doc(db):
    # 有就返回一个,没有就返回None
    coll = db['informations']
    print coll.find_one()  # 返回第一条记录
    print coll.find_one({"name": "quyang"})
    print coll.find_one({"name": "none"})
 
 
def get_one_by_id(db):
    # 通过objectid来查找一个doc
    coll = db['informations']
    obj = coll.find_one()
    obj_id = obj["_id"]
    print "_id 为ObjectId类型,obj_id:" + str(obj_id)
 
    print coll.find_one({"_id": obj_id})
    # 需要注意这里的obj_id是一个对象,不是一个str,使用str类型作为_id的值无法找到记录
    print "_id 为str类型 "
    print coll.find_one({"_id": str(obj_id)})
    # 可以通过ObjectId方法把str转成ObjectId类型
    from bson.objectid import ObjectId
 
    print "_id 转换成ObjectId类型"
    print coll.find_one({"_id": ObjectId(str(obj_id))})
 
 
def get_many_docs(db):
    # mongo中提供了过滤查找的方法,可以通过各种条件筛选来获取数据集,还可以对数据进行计数,排序等处理
    coll = db['informations']
    #ASCENDING = 1 升序;DESCENDING = -1降序;default is ASCENDING
    for item in coll.find().sort("age", pymongo.DESCENDING):
        print item
 
    count = coll.count()
    print "集合中所有数据 %s个" % int(count)
 
    #条件查询
    count = coll.find({"name":"quyang"}).count()
    print "quyang: %s"%count
 
def clear_all_datas(db):
    #清空一个集合中的所有数据
    db["informations"].remove()
 
if __name__ == '__main__':
    db = get_db()
    my_collection = get_collection(db)
    post = {"author": "Mike", "text": "My first blog post!", "tags": ["mongodb", "python", "pymongo"],
            "date": datetime.datetime.utcnow()}
    # 插入记录
    my_collection.insert(post)
    insert_one_doc(db)
    # 条件查询
    print my_collection.find_one({"x": "10"})
    # 查询表中所有的数据
    for iii in my_collection.find():
        print iii
    print my_collection.count()
    my_collection.update({"author": "Mike"},
                         {"author": "quyang", "text": "My first blog post!", "tags": ["mongodb", "python", "pymongo"],
                          "date": datetime.datetime.utcnow()})
    for jjj in my_collection.find():
        print jjj
    get_one_doc(db)
    get_one_by_id(db)
    get_many_docs(db)
    # clear_all_datas(db)

 

  

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值