本文整理汇总了Python中thumbor.importer.Importer.import_item方法的典型用法代码示例。如果您正苦于以下问题:Python Importer.import_item方法的具体用法?Python Importer.import_item怎么用?Python Importer.import_item使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类thumbor.importer.Importer
的用法示例。
在下文中一共展示了Importer.import_item方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_single_item_should_equal_file_storage
# 需要导入模块: from thumbor.importer import Importer [as 别名]
# 或者: from thumbor.importer.Importer import import_item [as 别名]
def test_single_item_should_equal_file_storage(self):
importer = Importer(None)
importer.import_item(
config_key='file_storage',
item_value='thumbor.storages.file_storage',
class_name='Storage'
)
expect(importer.file_storage).to_equal(file_storage)
示例2: topic
# 需要导入模块: from thumbor.importer import Importer [as 别名]
# 或者: from thumbor.importer.Importer import import_item [as 别名]
def topic(self):
importer = Importer(None)
importer.import_item(
config_key='detectors', is_multiple=True,
item_value=(
'thumbor.detectors.feature_detector',
'thumbor.detectors.feature_detector'
)
)
return importer.detectors
示例3: test_multiple_items_can_be_imported
# 需要导入模块: from thumbor.importer import Importer [as 别名]
# 或者: from thumbor.importer.Importer import import_item [as 别名]
def test_multiple_items_can_be_imported(self):
importer = Importer(None)
importer.import_item(
config_key='detectors', is_multiple=True,
item_value=(
'thumbor.detectors.feature_detector',
'thumbor.detectors.feature_detector'
)
)
expect(importer.detectors).to_length(2)
expect(importer.detectors).to_include(feature_detector)
示例4: topic
# 需要导入模块: from thumbor.importer import Importer [as 别名]
# 或者: from thumbor.importer.Importer import import_item [as 别名]
def topic(self):
importer = Importer(None)
importer.import_item(config_key='file_storage', item_value='thumbor.storages.file_storage', class_name='Storage')
return importer.file_storage