所以我想要完成的是,在python中我试图对mongoDB运行数据库命令并获取命令返回的值。
例如:
import pymongo
client = MongoClient("localhost")
#get the database
admin_db = client.admin
# this is where I run the command,
serverStats = admin_db.command("serverStatus")
这就是我被卡住的地方,但是如何获取此命令返回的值?