Metadata-Version: 1.1
Name: redis-writer
Version: 0.3
Summary: Fast serializer to pipeline data into redis
Home-page: https://github.com/baverman/redis_writer/
Author: Anton Bobrov
Author-email: baverman@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: redis_writer
        ============
        
        |travis| |coverage| |pyver|
        
        .. |travis| image:: https://travis-ci.org/baverman/redis_writer.svg?branch=master
           :target: https://travis-ci.org/baverman/redis_writer
        
        .. |coverage| image:: https://img.shields.io/badge/coverage-100%25-brightgreen.svg
        
        .. |pyver| image:: https://img.shields.io/badge/python-3.5%2C_3.6-blue.svg
        
        A fast serializer to pipeline data into redis:
        
        .. code:: python
        
           from redis import StrictRedis
           import redis_writer as rw
        
           rset = rw.compile('SET', bytes, int)
           rw.execute([rset(b'key%d' % r, r) for r in range(1000)],
                      client=StrictRedis())
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: System :: Distributed Computing
