當前位置: 首頁>>代碼示例>>Python>>正文


Python SafeUnzip.extract_path方法代碼示例

本文整理匯總了Python中olympia.files.utils.SafeUnzip.extract_path方法的典型用法代碼示例。如果您正苦於以下問題:Python SafeUnzip.extract_path方法的具體用法?Python SafeUnzip.extract_path怎麽用?Python SafeUnzip.extract_path使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在olympia.files.utils.SafeUnzip的用法示例。


在下文中一共展示了SafeUnzip.extract_path方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_localepicker

# 需要導入模塊: from olympia.files.utils import SafeUnzip [as 別名]
# 或者: from olympia.files.utils.SafeUnzip import extract_path [as 別名]
    def get_localepicker(self):
        """
        For a file that is part of a language pack, extract
        the chrome/localepicker.properties file and return as
        a string.
        """
        start = time.time()
        zip = SafeUnzip(self.file_path)
        if not zip.is_valid(fatal=False):
            return ''

        try:
            manifest = zip.extract_path('chrome.manifest')
        except KeyError, e:
            log.info('No file named: chrome.manifest in file: %s' % self.pk)
            return ''
開發者ID:darktrojan,項目名稱:addons-server,代碼行數:18,代碼來源:models.py

示例2: test_extract_path

# 需要導入模塊: from olympia.files.utils import SafeUnzip [as 別名]
# 或者: from olympia.files.utils.SafeUnzip import extract_path [as 別名]
 def test_extract_path(self):
     zip_file = SafeUnzip(self.xpi_path('langpack-localepicker'))
     assert zip_file.is_valid()
     assert'locale browser de' in zip_file.extract_path('chrome.manifest')
開發者ID:Alien426,項目名稱:addons-server,代碼行數:6,代碼來源:test_helpers.py


注:本文中的olympia.files.utils.SafeUnzip.extract_path方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。