Metadata-Version: 1.0
Name: bz2file
Version: 0.9
Summary: Read and write bzip2-compressed files.
Home-page: https://github.com/nvawda/bz2file
Author: Nadeem Vawda
Author-email: nadeem.vawda@gmail.com
License: Apache License, Version 2.0
Description: Bz2file is a Python library for reading and writing bzip2-compressed files.
        
        It contains a drop-in replacement for the standard library's ``bz2.BZ2File``
        class, including features from the latest development version of CPython that
        are not available in older releases.
        
        Bz2file is compatible with Python 2.6, 2.7, and 3.0 through 3.3.
        
        
        Features
        --------
        
        - Supports multi-stream files.
        
        - Can read from/write to any file-like object.
        
        - Added methods: ``peek()``, ``read1()``, ``readinto()``, ``fileno()``,
          ``readable()``, ``writable()``, ``seekable()``.
        
        
        Installation
        ------------
        
        To install bz2file, run: ::
        
           $ pip install bz2file
        
        
        Documentation
        -------------
        
        The ``BZ2File`` class in this module provides the same features and interface as
        the ``bz2.BZ2File`` class in the current development version of CPython,
        `documented here <http://docs.python.org/dev/library/bz2.html#bz2.BZ2File>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Archiving :: Compression
