1 Star 1 Fork 0

Aaron_ou/ECC_servie

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
clear_db.py 483 Bytes
一键复制 编辑 原始数据 按行查看 历史
Aaron_ou 提交于 2017-06-04 08:55 . finish regist
# -*- coding:UTF-8 -*-
"""
辅助程序用于清空数据库
"""
import pymongo
class db_class():
def __init__(self): #初始化数据库,后面的函数名称就是函数功效。。
self.conn = pymongo.MongoClient('localhost',27017)
self.user_db = self.conn.user
self.key_db = self.conn.user_key
def clear(self):
self.user_db.user.remove()
self.key_db.user.remove()
if __name__ == '__main__':
db = db_class()
db.clear()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Aaron_ou/ecc_servie.git
git@gitee.com:Aaron_ou/ecc_servie.git
Aaron_ou
ecc_servie
ECC_servie
master

搜索帮助