Use correct exception in unrar check
[rarfile.git] / README.rst
blob6b511e723f10a5285714656ce0178dc41dc0e269
2 rarfile - RAR archive reader for Python
3 =======================================
5 This is Python module for RAR_ archive reading.  The interface
6 is made as zipfile_ like as possible.  Licensed under ISC_
7 license.
9 .. _RAR: http://en.wikipedia.org/wiki/RAR
10 .. _zipfile: http://docs.python.org/library/zipfile.html
11 .. _ISC: http://en.wikipedia.org/wiki/ISC_license
13 Features:
15 - Supports both RAR 2.x and 3.x archives.
16 - Supports multi volume archives.
17 - Supports Unicode filenames.
18 - Supports password-protected archives.
19 - Supports archive and file comments.
20 - Archive parsing and non-compressed files are handled in pure Python code.
21 - For compressed files runs ``unrar`` utility.
22 - Works with both Python 2.x and 3.x.
24 Links:
26 - `Documentation`_
27 - `Downloads`_
28 - `Git`_ repo
30 .. _Git: https://github.com/markokr/rarfile
31 .. _Downloads: https://pypi.python.org/pypi/rarfile
32 .. _Documentation: https://rarfile.readthedocs.org/