File size: 2,416 Bytes
d3de7c1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | #!/usr/bin/env python
#
# Pure python p7zr implementation
# Copyright (C) 2019-2021 Hiroshi Miura
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
from py7zr.exceptions import Bad7zFile, DecompressionError, PasswordRequired, UnsupportedCompressionMethodError
from py7zr.io import Py7zIO, WriterFactory
from py7zr.properties import (
CHECK_CRC32,
CHECK_CRC64,
CHECK_NONE,
CHECK_SHA256,
FILTER_ARM,
FILTER_ARMTHUMB,
FILTER_BROTLI,
FILTER_BZIP2,
FILTER_COPY,
FILTER_CRYPTO_AES256_SHA256,
FILTER_DEFLATE,
FILTER_DELTA,
FILTER_IA64,
FILTER_LZMA,
FILTER_LZMA2,
FILTER_POWERPC,
FILTER_PPMD,
FILTER_SPARC,
FILTER_X86,
FILTER_ZSTD,
PRESET_DEFAULT,
PRESET_EXTREME,
)
from py7zr.py7zr import ArchiveInfo, FileInfo, SevenZipFile, is_7zfile, pack_7zarchive, unpack_7zarchive
from py7zr.version import __version__
__copyright__ = "Copyright (C) 2019-2021 Hiroshi Miura"
__all__ = [
"__version__",
"ArchiveInfo",
"FileInfo",
"SevenZipFile",
"is_7zfile",
"pack_7zarchive",
"unpack_7zarchive",
"PasswordRequired",
"UnsupportedCompressionMethodError",
"Bad7zFile",
"DecompressionError",
"Py7zIO",
"WriterFactory",
"FILTER_LZMA",
"FILTER_LZMA2",
"FILTER_DELTA",
"FILTER_COPY",
"FILTER_CRYPTO_AES256_SHA256",
"FILTER_X86",
"FILTER_ARM",
"FILTER_SPARC",
"FILTER_POWERPC",
"FILTER_IA64",
"FILTER_ARMTHUMB",
"FILTER_BZIP2",
"FILTER_DEFLATE",
"FILTER_ZSTD",
"FILTER_PPMD",
"FILTER_BROTLI",
"CHECK_SHA256",
"CHECK_CRC64",
"CHECK_CRC32",
"CHECK_NONE",
"PRESET_DEFAULT",
"PRESET_EXTREME",
]
|