Metadata-Version: 1.1
Name: colorhash
Version: 1.0.0
Summary: Generate a color based on a value
Home-page: https://bitbucket.org/fk/python-color-hash
Author: Felix Krull
Author-email: f_krull@gmx.de
License: MIT
Description: ===============================================
        color-hash: Generate a Color Based on a Value
        ===============================================
        
        This module generates a color based on an object, by calculating a color value
        based on the object's hash value (by default the result of Python's built-in
        ``hash`` function). This means the result is deterministic: the same value will
        always result in the same color.
        
        This module is a port of the `'color-hash' Javascript library`_. It supports
        Python 2.6, 2.7, and 3.3+.
        
        .. _'color-hash' Javascript library: https://github.com/zenozeng/color-hash
        
        
        Quick Start
        ===========
        
        ::
        
            >>> from colorhash import ColorHash
            >>> c = ColorHash('Hello World')
            >>> c.hsl
            (227, 0.35, 0.65)
            >>> c.rgb
            (135, 148, 197)
            >>> c.hex
            '#8794c5'
        
        
        Changelog
        =========
        
        * color-hash 1.0.0 *(2016-07-07)*
          - Initial port.
        
        
        License
        =======
        
        Copyright (c) 2016 Felix Krull <f_krull@gmx.de>
        
        This is a port of the 'color-hash' Javascript library which is:
        
        Copyright (c) 2015 Zeno Zeng
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of
        this software and associated documentation files (the "Software"), to deal in
        the Software without restriction, including without limitation the rights to
        use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
        the Software, and to permit persons to whom the Software is furnished to do so,
        subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
        CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
