本文整理匯總了Python中crits.raw_data.raw_data.RawDataType.drop_collection方法的典型用法代碼示例。如果您正苦於以下問題:Python RawDataType.drop_collection方法的具體用法?Python RawDataType.drop_collection怎麽用?Python RawDataType.drop_collection使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類crits.raw_data.raw_data.RawDataType
的用法示例。
在下文中一共展示了RawDataType.drop_collection方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: populate_raw_data_types
# 需要導入模塊: from crits.raw_data.raw_data import RawDataType [as 別名]
# 或者: from crits.raw_data.raw_data.RawDataType import drop_collection [as 別名]
def populate_raw_data_types(drop):
"""
Populate default set of raw data types into the system.
:param drop: Drop the existing collection before trying to populate.
:type: boolean
"""
# define your raw data types here
data_types = ['Text', 'JSON']
if drop:
RawDataType.drop_collection()
if len(RawDataType.objects()) < 1:
for data_type in data_types:
dt = RawDataType()
dt.name = data_type
dt.save()
print "Raw Data Types: added %s types!" % len(data_types)
else:
print "Raw Data Types: existing documents detected. skipping!"