Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Python MongoDB remove (delete)

from pymongo import MongoClient
import datetime

client = MongoClient('mongodb://mongodb:27017')
db = client.demo

print("before")
for p in db.people.find():
    print(p)

db.people.delete_one({ 'name' : 'Zorg'})

print("after")
for p in db.people.find():
    print(p)