Metadata-Version: 1.1
Name: qcache-client
Version: 0.3.1
Summary: Python client library for QCache
Home-page: https://github.com/tobgu/qcache-client
Author: Tobias Gustafsson
Author-email: tobias.l.gustafsson@gmail.com
License: BSD
Description: =============
        QCache-client
        =============
        
        .. image:: https://travis-ci.org/tobgu/qcache-client.png?branch=master
            :target: https://travis-ci.org/tobgu/qcache-client
        
        .. image:: https://badge.fury.io/py/qcache-client.svg
            :target: https://badge.fury.io/py/qcache-client
        
        .. image:: http://codecov.io/github/tobgu/qcache-client/coverage.svg?branch=master
            :target: http://codecov.io/github/tobgu/qcache-client?branch=master
        
        
        .. _QCache: https://github.com/tobgu/qcache
        
        Python client library for QCache_. Uses consistent hashing to distribute data over multiple nodes.
        
        Installation
        ============
        ::
        
            pip install qcache-client
        
        Documentation
        =============
        
        Documentation is close to non-existent right now. Please see the tests in test_qclient.py for examples of how to use it.
        
        
        Contributing
        ============
        Want to contribute? That's great!
        
        If you experience problems please log them on GitHub. If you want to contribute code,
        please fork the code and submit a pull request.
        
        If you intend to implement major features or make major changes please raise an issue
        so that we can discuss it first.
        
        Running tests
        =============
        .. code::
        
           pip install -r dev-requirements.txt
           invoke test
        
        TODO
        ====
        - Fetch server side statistics
        - Documentation
        - Support for other python versions than 2.7
        - Support chunked transfer
        
        Changelog
        =========
        
        0.3.1 (2016-01-16)
        ------------------
        * Include CHANGELOG in release.
        
        0.3.0 (2015-12-23)
        ------------------
        * Possible to query using POST instead of GET. Good for very large queries.
        * Additional circuit breakers to avoid infinite repetition of requests in case of errors.
        
        0.2.1 (2015-12-14)
        ------------------
        * SSL and basic auth support
        * Possible to add custom headers when posting data, type information for example
        
        0.2.0 (2015-12-06)
        ------------------
        * Report the unsliced result length as part of the result, nice for pagination for example
        * Use connection pooling
        
        0.1.0 (2015-10-25)
        ------------------
        * First release that actually does something sensible.
        
        0.0.1 (2015-10-15)
        ------------------
        * First release on PyPI.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Utilities
