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


Python SavedExportSchema.get_db方法代码示例

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


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

示例1: export_data_shared

# 需要导入模块: from couchexport.models import SavedExportSchema [as 别名]
# 或者: from couchexport.models.SavedExportSchema import get_db [as 别名]
def export_data_shared(export_tag, format=None, filename=None,
                       previous_export_id=None, filter=None,
                       use_cache=True, max_column_size=2000,
                       separator='|'):
    """
    Shared method for export. If there is data, return an HTTPResponse
    with the appropriate data. If there is not data returns None.
    """
    if previous_export_id and not SavedExportSchema.get_db().doc_exist(previous_export_id):
        return HttpResponseNotFound(
            _('No previous export with id "{id}" found'.format(id=previous_export_id)))

    if not filename:
        filename = export_tag

    files = DefaultExportSchema(index=export_tag).get_export_files(
        format=format,
        previous_export_id=previous_export_id,
        filter=filter,
        use_cache=use_cache,
        max_column_size=max_column_size,
        separator=separator
    )
    if files and files.checkpoint:
        return export_response(files.file, format, filename, files.checkpoint)
    else:
        return None
开发者ID:kkrampa,项目名称:commcare-hq,代码行数:29,代码来源:shortcuts.py


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