Metadata-Version: 2.0
Name: hashring
Version: 1.5.1
Summary: Implements consistent hashing in Python (using md5 as hashing function).
Home-page: https://github.com/goller/hashring
Author: Chris Goller
Author-email: goller@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities

===============================
hashring
===============================

| |docs| |travis| |appveyor| |coveralls| |landscape| |scrutinizer|
| |version| |downloads| |wheel| |supported-versions| |supported-implementations|

.. |docs| image:: https://readthedocs.org/projects/hashring/badge/?style=flat
    :target: https://readthedocs.org/projects/hashring
    :alt: Documentation Status

.. |travis| image:: http://img.shields.io/travis/goller/hashring/master.png?style=flat
    :alt: Travis-CI Build Status
    :target: https://travis-ci.org/goller/hashring

.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/goller/hashring?branch=master
    :alt: AppVeyor Build Status
    :target: https://ci.appveyor.com/project/goller/hashring

.. |coveralls| image:: http://img.shields.io/coveralls/goller/hashring/master.png?style=flat
    :alt: Coverage Status
    :target: https://coveralls.io/r/goller/hashring

.. |landscape| image:: https://landscape.io/github/goller/hashring/master/landscape.svg?style=flat
    :target: https://landscape.io/github/goller/hashring/master
    :alt: Code Quality Status

.. |version| image:: http://img.shields.io/pypi/v/hashring.png?style=flat
    :alt: PyPI Package latest release
    :target: https://pypi.python.org/pypi/hashring

.. |downloads| image:: http://img.shields.io/pypi/dm/hashring.png?style=flat
    :alt: PyPI Package monthly downloads
    :target: https://pypi.python.org/pypi/hashring

.. |wheel| image:: https://pypip.in/wheel/hashring/badge.png?style=flat
    :alt: PyPI Wheel
    :target: https://pypi.python.org/pypi/hashring

.. |supported-versions| image:: https://pypip.in/py_versions/hashring/badge.png?style=flat
    :alt: Supported versions
    :target: https://pypi.python.org/pypi/hashring

.. |supported-implementations| image:: https://pypip.in/implementation/hashring/badge.png?style=flat
    :alt: Supported imlementations
    :target: https://pypi.python.org/pypi/hashring

.. |scrutinizer| image:: https://img.shields.io/scrutinizer/g/goller/hashring/master.png?style=flat
    :alt: Scrtinizer Status
    :target: https://scrutinizer-ci.com/g/goller/hashring/

Implements consistent hashing in Python (using md5 as hashing function).

* Free software: BSD license

Installation
============

::

    pip install hashring

Documentation
=============

https://hashring.readthedocs.org/

Development
===========

To run the all tests run::

    tox


Changelog
=========

1.4.0 (2014-12-20)
-----------------------------------------

* First release on PyPI.


