我的第三十二篇博客---mongo和python结合

Posted sll-csdn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我的第三十二篇博客---mongo和python结合相关的知识,希望对你有一定的参考价值。

交互再用管道 或者$ 的时候 要加引号括住
ret=collection.find({‘$or‘:[{‘age‘:{‘$gt‘:20}},{‘age‘:{‘$lt‘:17}}]})
ret=collection.aggregate([{"$group":{‘_id‘:‘$age‘}}])

from pymongo import MongoClient
client=MongoClient(host=‘localhost‘,port=27017)
collection=client[‘test‘][‘py‘]

#单条插入
# collection.insert_one({‘name‘:‘zhangsan‘,‘age‘:20})
#多条插入
# collection.insert_many([{‘name‘:‘lisi‘,‘age‘:30},{‘name‘:‘wangwu‘,‘age‘:10}])
#输出查询结果 是个生成器
# ret=collection.find()
# for x in ret:
# print(x)

item_list=[{‘name‘:‘test1000{}‘.format(i)} for i in range(1,10)]
print(item_list)

collection.update({"name":"test10005"},{"$set":{"name":"new_test10005"}},upsert=True)
```
先查询数据库中是否含有{"name":"test10005"}的数据,如果存在则{"name":"new_test10005"}进行修改,如果不存在则将{"name":"new_test10005"}插入到数据库

删除一条数据

```python
#delete_one删除一条数据
collection.delete_one({"name":"test10010"})
```

删除全部数据

```python
#delete_may删除所有满足条件的数据
collection.delete_many({"name":"test10010"})

 

以上是关于我的第三十二篇博客---mongo和python结合的主要内容,如果未能解决你的问题,请参考以下文章

Python之路(第三十二篇) 网络编程:udp套接字简单文件传输

开始写游戏 --- 第三十二篇

第三十二篇 vue

第三十二篇-NavigationView导航抽屉的使用

第三十二篇iOS 10开发

第三十二篇直播项目开发