How to find names of all collections using PyMongo?

后端 未结 5 943
北恋
北恋 2021-02-01 00:43

How to find names of all collections using PyMongo and find all fields in chosen collection ? I have name of database and name of chosen collection. (Scenario : user input name

5条回答
  •  面向向阳花
    2021-02-01 00:49

    To find the collections, you can use collection_names() - http://api.mongodb.org/python/current/api/pymongo/database.html#pymongo.database.Database.collection_names

    Edit:

    The collection_names is deprecated from 3.7 onwards and been replaced by list_collection_names - https://api.mongodb.com/python/current/api/pymongo/database.html#pymongo.database.Database.list_collection_names

提交回复
热议问题