Table Of Contents
RAR archive reader.
This is Python module for Rar archive reading. The interface is made as zipfile-like as possible.
Example:
import rarfile
rf = rarfile.RarFile('myarchive.rar')
for f in rf.infolist():
print f.filename, f.file_size
if f.filename == 'README':
print(rf.read(f))
Archive files can also be accessed via file-like object returned by RarFile.open():
import rarfile
with rarfile.RarFile('archive.rar') as rf:
with rf.open('README') as f:
for ln in f:
print(ln.strip())
There are few module-level parameters to tune behaviour, here they are with defaults, and reason to change it:
import rarfile
# Set to full path of unrar.exe if it is not in PATH
rarfile.UNRAR_TOOL = "unrar"
# Set to 0 if you don't look at comments and want to
# avoid wasting time for parsing them
rarfile.NEED_COMMENTS = 1
# Set up to 1 if you don't want to deal with decoding comments
# from unknown encoding. rarfile will try couple of common
# encodings in sequence.
rarfile.UNICODE_COMMENTS = 0
# Set to 1 if you prefer timestamps to be datetime objects
# instead tuples
rarfile.USE_DATETIME = 0
# Set to '/' to be more compatible with zipfile
rarfile.PATH_SEP = '\\'
For more details, refer to source.
Bases: object
Parse RAR structure, provide access to files in archive.
Open and parse a RAR archive.
Parameters:
- rarfile
- archive file name
- mode
- only ‘r’ is supported.
- charset
- fallback charset to use, if filenames are not already Unicode-enabled.
- info_callback
- debug callback, gets to see all archive entries.
- crc_check
- set to False to disable CRC checks
Archive comment. Byte string or None. Use UNICODE_COMMENTS to get automatic decoding to unicode.
Sets the password to use when extracting.
Returns True if any archive entries require password for extraction.
Return list of filenames in archive.
Return RarInfo objects for all files/directories in archive.
Returns filenames of archive volumes.
In case of single-volume archive, the list contains just the name of main archive file.
Return RarInfo for file.
Returns file-like object (RarExtFile), from where the data can be read.
The object implements io.RawIOBase interface, so it can be further wrapped with io.BufferedReader and io.TextIOWrapper.
On older Python where io module is not available, it implements only .read(), .seek(), .tell() and .close() methods.
The object is seekable, although the seeking is fast only on uncompressed files, on compressed files the seeking is implemented by reading ahead and/or restarting the decompression.
Parameters:
- fname
- file name or RarInfo instance.
- mode
- must be ‘r’
- psw
- password to use for extracting.
Return uncompressed data for archive entry.
For longer files using .open() may be better idea.
Parameters:
- fname
- filename or RarInfo instance
- psw
- password to use for extracting.
Release open resources.
Print archive file list to stdout.
Extract single file into current directory.
Parameters:
- member
- filename or RarInfo instance
- path
- optional destination path
- pwd
- optional password to use
Extract all files into current directory.
Parameters:
- path
- optional destination path
- members
- optional filename or RarInfo instance list to extract
- pwd
- optional password to use
Let ‘unrar’ test the archive.
Bases: object
An entry in rar archive.
zipfile-compatible fields:
- filename
- File name with relative path. Default path separator is ‘\’, to change set rarfile.PATH_SEP. Always unicode string.
- date_time
- Modification time, tuple of (year, month, day, hour, minute, second). Or datetime() object if USE_DATETIME is set.
- file_size
- Uncompressed size.
- compress_size
- Compressed size.
- CRC
- CRC-32 of uncompressed file, unsigned int.
- comment
- File comment. Byte string or None. Use UNICODE_COMMENTS to get automatic decoding to unicode.
- volume
- Volume nr, starting from 0.
RAR-specific fields:
- compress_type
- Compression method: 0x30 - 0x35.
- extract_version
- Minimal Rar version needed for decompressing.
- host_os
- Host OS type, one of RAR_OS_* constants.
- mode
- File attributes. May be either dos-style or unix-style, depending on host_os.
- volume_file
- Volume file name, where file starts.
- mtime
- Optional time field: Modification time, with float seconds. Same as .date_time but with more precision.
- ctime
- Optional time field: creation time, with float seconds.
- atime
- Optional time field: last access time, with float seconds.
- arctime
- Optional time field: archival time, with float seconds.
Internal fields:
- type
- One of RAR_BLOCK_* types. Only entries with type==RAR_BLOCK_FILE are shown in .infolist().
- flags
- For files, RAR_FILE_* bits.
Returns True if the entry is a directory.
Bases: io.RawIOBase
Base class for file-like object that RarFile.open() returns.
Provides public methods and common crc checking.
If io module is available (Python 2.6+, 3.x), then this calls will inherit from io.RawIOBase class. This makes line-based access available: RarExtFile.readline() and for ln in f.
Filename of the archive entry
Read all or specified amount of data from archive entry.
Close open resources.
Zero-copy read directly into buffer.
Returns bytes read.
Return current reading position in uncompressed data.
Seek in data.
On uncompressed files, the seeking works by actual seeks so it’s fast. On compresses files its slow - forward seeking happends by reading ahead, backwards by re-opening and decompressing from the start.
Returns True
Returns False.
Writing is not supported.
Returns True.
Seeking is supported, although it’s slow on compressed files.
Read all remaining data
Returns underlying file descriptor if one exists.
An IOError is raised if the IO object does not use a file descriptor.
Flush write buffers, if applicable.
This is not implemented for read-only and non-blocking streams.
Return whether this is an ‘interactive’ stream.
Return False if it can’t be determined.
x.next() -> the next value, or raise StopIteration
Read and return a line from the stream.
If limit is specified, at most limit bytes will be read.
The line terminator is always b’n’ for binary files; for text files, the newlines argument to open can be used to select the line terminator(s) recognized.
Return a list of lines from the stream.
hint can be specified to control the number of lines read: no more lines will be read if the total size (in bytes/characters) of all lines so far exceeds hint.
Truncate file to size bytes.
File pointer is left unchanged. Size defaults to the current IO position as reported by tell(). Returns the new size.
‘unrar’, ‘rar’ or full path to either one
default fallback charset
list of encodings to try, with fallback to DEFAULT_CHARSET if none succeed
Convert RAR time tuple into datetime() object
Separator for path name components. RAR internally uses ‘\’. Use ‘/’ to be similar with zipfile.
whether to parse file/archive comments.
whether to convert comments to unicode strings
When RAR is corrupt, stopping on bad header is better On unknown/misparsed RAR headers reporting is better
whether to speed up decompression by using tmp archive
limit the filesize for tmp archive usage
No compression.
Compression level -m1 - Fastest compression.
Compression level -m2.
Compression level -m3.
Compression level -m4.
Compression level -m5 - Maximum compression.
Bases: exceptions.Exception
Base class for rarfile errors.
Bases: rarfile.Error
Incorrect data in archive.
Bases: rarfile.Error
The file is not RAR archive.
Bases: rarfile.Error
Cannot guess multipart name components.
Bases: rarfile.Error
File not found in RAR
Bases: rarfile.Error
File requires password
Bases: rarfile.Error
Need to start from first volume.
Bases: rarfile.Error
Cannot parse encrypted headers - no crypto available.
Bases: rarfile.Error
Problem reported by unrar/rar.
Bases: rarfile.RarExecError
Non-fatal error
Bases: rarfile.RarExecError
Fatal error
Bases: rarfile.RarExecError
CRC error during unpacking
Bases: rarfile.RarExecError
Must not modify locked archive
Bases: rarfile.RarExecError
Write error
Bases: rarfile.RarExecError
Open error
Bases: rarfile.RarExecError
User error
Bases: rarfile.RarExecError
Memory error
Bases: rarfile.RarExecError
Create error
Bases: rarfile.RarExecError
No files that match pattern were found
Bases: rarfile.RarExecError
User stop
Bases: rarfile.RarExecError
Unknown exit code
Bases: rarfile.RarExecError
Unrar exited with signal