Python删除mongodb数据库和用户,查看Python操作mongodb的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python删除mongodb数据库和用户,查看Python操作mongodb的方法相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
#coding:utf-8
from pymongo import MongoClient
client = MongoClient(‘192.168.6.243‘, 27017)
db=client[‘admin‘]
db.authenticate(‘root‘,‘123456‘)
#help(db) #查看python操作mongodb的方法
for i in range(2,900):
try:
db = client[‘s%s‘ % i]
db.command("dropUser", "Tany")
db.command("dropDatabase")
except:
print ‘not db‘
以上是关于Python删除mongodb数据库和用户,查看Python操作mongodb的方法的主要内容,如果未能解决你的问题,请参考以下文章