demo_mongodb_check_collection.py:
import pymongo myclient = pymongo.MongoClient('mongodb://localhost:27017/') mydb = myclient['mydatabase'] mycol = mydb["customers"] print(mydb.list_collection_names())
➜ begtut>python demo_mongodb_check_collection.py
['customers']