本文整理汇总了Python中crits.config.config.CRITsConfig.drop_collection方法的典型用法代码示例。如果您正苦于以下问题:Python CRITsConfig.drop_collection方法的具体用法?Python CRITsConfig.drop_collection怎么用?Python CRITsConfig.drop_collection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类crits.config.config.CRITsConfig
的用法示例。
在下文中一共展示了CRITsConfig.drop_collection方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: force_reset_config
# 需要导入模块: from crits.config.config import CRITsConfig [as 别名]
# 或者: from crits.config.config.CRITsConfig import drop_collection [as 别名]
def force_reset_config():
"""
Resets the values for the CRITsConfig class by dropping the
database collection and then saving a new default CRITsConfig.
"""
print "Resetting CRITs configuration settings."
CRITsConfig.drop_collection();
crits_config = CRITsConfig();
crits_config.save();
示例2: clean_db
# 需要导入模块: from crits.config.config import CRITsConfig [as 别名]
# 或者: from crits.config.config.CRITsConfig import drop_collection [as 别名]
def clean_db():
"""
Clean up the DB after testing.
"""
src = SourceAccess.objects(name=TSRC).first()
if src:
src.delete()
user = CRITsUser.objects(username=TUSER_NAME).first()
if user:
user.delete()
TestObject.drop_collection()
TestSourceObject.drop_collection()
CRITsConfig.drop_collection()