当前位置: 首页>>代码示例>>Python>>正文


Python Config.UPLOAD_ENABLED方法代码示例

本文整理汇总了Python中thumbor.config.Config.UPLOAD_ENABLED方法的典型用法代码示例。如果您正苦于以下问题:Python Config.UPLOAD_ENABLED方法的具体用法?Python Config.UPLOAD_ENABLED怎么用?Python Config.UPLOAD_ENABLED使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在thumbor.config.Config的用法示例。


在下文中一共展示了Config.UPLOAD_ENABLED方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_app

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import UPLOAD_ENABLED [as 别名]
    def get_app(self):
        cfg = Config()
        cfg.UPLOAD_ENABLED = True
        cfg.UPLOAD_PHOTO_STORAGE = 'thumbor.storages.file_storage'
        cfg.FILE_STORAGE_ROOT_PATH = file_storage_root_path
        cfg.UPLOAD_DELETE_ALLOWED = False

        importer = Importer(cfg)
        importer.import_modules()
        ctx = Context(None, cfg, importer)
        application = ThumborServiceApp(ctx)
        return application
开发者ID:riseofthetigers,项目名称:thumbor,代码行数:14,代码来源:upload_vows.py

示例2: get_app

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import UPLOAD_ENABLED [as 别名]
    def get_app(self):
        cfg = Config()
        cfg.UPLOAD_ENABLED = True
        cfg.UPLOAD_PUT_ALLOWED = True
        cfg.UPLOAD_PHOTO_STORAGE = 'thumbor.storages.file_storage'
        cfg.FILE_STORAGE_ROOT_PATH = storage_path
        cfg.MIN_WIDTH = 40
        cfg.MIN_HEIGHT = 40

        importer = Importer(cfg)
        importer.import_modules()
        ctx = Context(None, cfg, importer)
        application = ThumborServiceApp(ctx)
        return application
开发者ID:bguided,项目名称:thumbor,代码行数:16,代码来源:upload_vows.py

示例3: get_context

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import UPLOAD_ENABLED [as 别名]
    def get_context(self):
        self.default_filename = 'image'

        cfg = Config()
        cfg.UPLOAD_ENABLED = True
        cfg.UPLOAD_PHOTO_STORAGE = 'thumbor.storages.file_storage'
        cfg.FILE_STORAGE_ROOT_PATH = self.root_path
        cfg.UPLOAD_DELETE_ALLOWED = False
        cfg.UPLOAD_PUT_ALLOWED = False
        cfg.UPLOAD_DEFAULT_FILENAME = self.default_filename

        importer = Importer(cfg)
        importer.import_modules()

        return Context(None, cfg, importer)
开发者ID:caeugusmao,项目名称:thumbor,代码行数:17,代码来源:test_upload_api.py

示例4: get_app

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import UPLOAD_ENABLED [as 别名]
    def get_app(self):
        self.default_filename = "image"

        cfg = Config()
        cfg.UPLOAD_ENABLED = True
        cfg.UPLOAD_PHOTO_STORAGE = "thumbor.storages.file_storage"
        cfg.FILE_STORAGE_ROOT_PATH = file_storage_root_path
        cfg.UPLOAD_DELETE_ALLOWED = True
        cfg.UPLOAD_PUT_ALLOWED = False
        cfg.UPLOAD_DEFAULT_FILENAME = self.default_filename

        importer = Importer(cfg)
        importer.import_modules()

        ctx = Context(None, cfg, importer)
        application = ThumborServiceApp(ctx)
        return application
开发者ID:CameronNemo,项目名称:thumbor,代码行数:19,代码来源:upload_api_vows.py

示例5: get_app

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import UPLOAD_ENABLED [as 别名]
    def get_app(self):
        self.default_filename = 'image'

        cfg = Config()
        cfg.UPLOAD_ENABLED = True
        cfg.UPLOAD_PUT_ALLOWED = True
        cfg.UPLOAD_PHOTO_STORAGE = 'thumbor.storages.file_storage'
        cfg.FILE_STORAGE_ROOT_PATH = file_storage_root_path
        cfg.UPLOAD_DEFAULT_FILENAME = self.default_filename
        cfg.MIN_WIDTH = 40
        cfg.MIN_HEIGHT = 40
        cfg.UPLOAD_MAX_SIZE = 72000

        importer = Importer(cfg)
        importer.import_modules()
        ctx = Context(None, cfg, importer)
        application = ThumborServiceApp(ctx)
        return application
开发者ID:wking,项目名称:thumbor,代码行数:20,代码来源:upload_api_vows.py


注:本文中的thumbor.config.Config.UPLOAD_ENABLED方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。