时间:2021-07-01 10:21:17 帮助过:2人阅读
结果:
操作MongoDB的主要方法如下:
(1) insert_one:加入一条文档数据到集合中。
collection.insert_one({ "name":"xhh", "gender":"true", "age":"20" })
(2) insert_many:加入多条文档数据到集合中。
collection.insert_many([ { "name":"lx", "gender":"true", "age":"18" }, { "name":"lh", "gender":"true", "age":"20" } ])
结果:
(3) 查找一条文档对象。
result = collection.find_one() print(result)
(4) 查找所有文档对象。
cursor = collection.find() for x in cursor: print(x)
结果:
(5) 更新一条文档对象。
collection.update_one({"name":"lx"},{"$set":{"age":"10"}})
(6) 更新多条文档对象。
collection.update_many({"gender":"true"},{"$set":{"age":"30"}})
更新前:
更新后:
(7) 删除一条文档对象。
collection.delete_one({"name":"xhh"})
结果:
因为我创建的是固定集合,不能删除文档。
(8) 删除多条文档对象。
collection.delete_many({"name":"xhh"})
结果:
爬虫(九):python操作MySQL、MongoDB
标签:文档 url blog ODB 连接 png mic 查找 imp