This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pymongo import MongoClient | |
client = MongoClient('localhost', 27017) | |
db = client.Northwind # Get the database | |
#get a look at which collections are in the database | |
collection = db.collection_names(include_system_collections=False) | |
for collect in collection: | |
print(collect) | |
#short name for relevant collections |