Metadata-Version: 1.1
Name: uniprop
Version: 1.1
Summary: Unicode properties of codepoints.
Home-page: https://bitbucket.org/mrabarnett/uniprop
Author: Matthew Barnett
Author-email: uniprop@mrabarnett.plus.com
License: Apache License, Version 2.0
Description: Summary
        -------
        
        This module reports the Unicode properties of codepoints, beyond what Python's ``unicodedata`` module provides.
        
        
        Unicode
        -------
        
        This module supports Unicode 9.0.
        
        
        
        Examples
        --------
        
          .. sourcecode:: python
        
            >>> import uniprop
            >>> uniprop.script('A')
            'Latin'
            >>> uniprop.script('\N{GREEK SMALL LETTER ALPHA}')
            'Greek'
            >>> uniprop.block('A')
            'Basic_Latin'
            >>> uniprop.block('\N{GREEK SMALL LETTER ALPHA}')
            'Greek_And_Coptic'
            >>> uniprop.numeric_value('\N{VULGAR FRACTION ONE THIRD}')
            '1/3'
            >>> uniprop.numeric_value('A')
            'NaN'
            >>> uniprop.numeric_type('\N{VULGAR FRACTION ONE THIRD}')
            'Numeric'
            >>> uniprop.numeric_type('A')
            'None'
        
        Please note that all of the results are strings. This differs from the ``unicodedata`` module where ``numeric_value`` returns a float.

Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache License, Version 2.0
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: General
