Metadata-Version: 1.0
Name: ctypes-snappy
Version: 1.01
Summary: Python ctypes interface to Google's libsnappy compression.
Home-page: http://rjpower.org/browse.cgi/ctypes-snappy
Author: Russell Power
Author-email: power@cs.nyu.edu
License: BSD
Description: 
        About ctypes-snappy
        ===================
        
        This module provides an interface to the lightweight snappy compression
        library:
        
        http://code.google.com/p/snappy/
        
        As it uses ctypes to provide a Python interface, rather then the Python API,
        it is suitable for use with PyPy.  If you don't need to use PyPy, then you
        will likely be just as happy using the python-snappy library:
        
        http://pypi.python.org/pypi/python-snappy
        
        The usage is a straightfoward copy of the gzip package:
        
        | import snappy
        | compressed = snappy.compress('abba' * 100)
        | uncompressed = snappy.uncompress(compressed)
         
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Archiving :: Compression
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.5
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
