Metadata-Version: 2.1
Name: uniprop
Version: 1.6
Summary: 'uniprop' provides the Unicode properties of codepoints similar to those of the unicodedata module.
Home-page: https://bitbucket.org/mrabarnett/uniprop
Author: Matthew Barnett
Author-email: uniprop@mrabarnett.plus.com
License: Apache Software License
Description: Summary
        -------
        
        This module reports the Unicode properties of codepoints, beyond what Python's ``unicodedata`` module provides.
        
        
        Unicode
        -------
        
        This module supports Unicode 13.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: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
