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


Python SafeUnzip.close方法代码示例

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


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

示例1: rezip_file

# 需要导入模块: from olympia.files.utils import SafeUnzip [as 别名]
# 或者: from olympia.files.utils.SafeUnzip import close [as 别名]
def rezip_file(response, pk):
    # An .xpi does not have a directory inside the zip, yet zips from github
    # do, so we'll need to rezip the file before passing it through to the
    # validator.
    loc = os.path.join(user_media_path('addons'), 'temp', uuid.uuid4().hex)
    old_filename = '{}_github_webhook.zip'.format(pk)
    old_path = os.path.join(loc, old_filename)

    with storage.open(old_path, 'wb') as old:
        old.write(response.content)

    new_filename = '{}_github_webhook.xpi'.format(pk)
    new_path = os.path.join(loc, new_filename)

    old_zip = SafeUnzip(old_path)
    if not old_zip.is_valid():
        raise

    with storage.open(new_path, 'w') as new:
        new_zip = zipfile.ZipFile(new, 'w')

        for obj in old_zip.filelist:
            # Basically strip off the leading directory.
            new_filename = obj.filename.partition('/')[-1]
            if not new_filename:
                continue
            new_zip.writestr(new_filename, old_zip.read(obj.filename))

        new_zip.close()

    old_zip.close()
    return new_path
开发者ID:Natim,项目名称:addons-server,代码行数:34,代码来源:utils.py


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