1、单条删除
基本语法
# 删除第一个满足条件的数据
collection.delete_one(查询条件)
实现代码
__author__ = "dengxinyan"
from pymongo import MongoClient
conn = MongoClient(host='localhost', port=27017, username=None, password=None)
database = conn['spider']
collection = database['news']
# 只删除满足条件的第一条数据
res = collection.delete_one({'title': "2022年10月1日早间新闻"})
print(res)
2、多条删除
基本语法
# 删除所有满足条件的数据
collection.delete_many(查询条件)
实现代码
__author__ = "dengxinyan"
from pymongo import MongoClient
conn = MongoClient(host='localhost', port=27017, username=None, password=None)
database = conn['spider']
collection = database['news']
# 只删除满足条件的第一条数据
res = collection.delete_many({'title': "2022年10月1日早间新闻"})
print(res)