Python中的数据库连接与查询——使用pymongo

Posted 桌子哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中的数据库连接与查询——使用pymongo相关的知识,希望对你有一定的参考价值。

pymongo是在Python环境下使用MongoDB的方法。

以某电商网站搜索“连衣裙”的第一页商品数据抓取下来并存入MongoDB数据库。

import requests
import pymongo
client = pymongo.MongoClient(‘localhost‘,27017)
# 创建数据库
taobao = client[‘taobao‘]
# 新建表
search_result = taobao[‘search_result‘]
# 爬取数据
url = ‘***‘
strhtml = requests.get(url)
result = strhtml.json()
for item in result[‘listItem‘]:
    json_data = {
        ‘title‘:item[‘title‘],
        ‘price‘:float(item[‘price‘]),
        ‘sold‘:int(item[‘sold‘]),
        ‘location‘:item[‘location‘]
}
# 表中写入数据
search_result.insert(json_data)

  

查询位置在“浙江 杭州”,并且价格大于100元的商品数据

for item in search_result.find({"location":"浙江 杭州","price":{‘$gt‘:100}})
    print(item)

  

将位置“浙江 杭州”改为“浙江”

search_result.update({"location":"浙江 杭州"},{"$set":{"location":"浙江”}})

  

删除销量小于1000件的商品数据

search_result.remove({"sold":{‘$lt‘:1000}})

  

以上是关于Python中的数据库连接与查询——使用pymongo的主要内容,如果未能解决你的问题,请参考以下文章

查询期间丢失与 MySQL 服务器的连接 - Python、MySql

MySQL 连接器 (Python):每个查询的新数据库连接与单个连接

Python与Mysql 数据库的连接,以及查询。

pymongo 用户密码连接

能用python让网页与数据库连接吗

无法使用 pyodbc 查询中的日期