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 drop database

from pymongo import MongoClient
import datetime

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