pymongo - 运行数据库命令并获取输出值?

时间:2014-08-29 19:32:48

标签: mongodb python-2.7

所以我想要完成的是,在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")

这就是我被卡住的地方,但是如何获取此命令返回的值?

0 个答案:

没有答案