Metadata-Version: 2.4
Name: youseedee
Version: 0.7.0
Summary: Interface to the latest version of the Unicode Character Database
Author-email: Simon Cozens <simon@simon-cozens.org>
License: # youseedee: interface to the UCD"
        
        This module allows you to query the Unicode Character Database. The main
        function to be imported is `ucd_data`:
        
            >>> ucd_data(0x078A)
            {'Age': '3.0',
             'Block': 'Thaana',
             'Canonical_Combining_Class': '0',
             'East_Asian_Width': 'N',
             'General_Category': 'Lo',
             'Line_Break': 'AL',
             'Name': 'THAANA LETTER FAAFU',
             'Script': 'Thaana'}
        
        On first run, it will download the database files for you from
        unicode.org. These are stored in your operating system's user cache directory (determined by [`platformdirs`](https://pypi.org/project/platformdirs/)) in a folder called `youseedee`.
        These are also updated if new data is available from unicode.org
        
        You may also use it as a command line utility:
        
            $ python3 -m youseedee 0x078A
            {'Age': '3.0',
             'Block': 'Thaana',
             'Canonical_Combining_Class': '0',
             'East_Asian_Width': 'N',
             'General_Category': 'Lo',
             'Line_Break': 'AL',
             'Name': 'THAANA LETTER FAAFU',
             'Script': 'Thaana'}
        
            $ python3 -m youseedee Ǩ
            {'Age': '1.1',
             'Block': 'Latin Extended-B',
             'Canonical_Combining_Class': '0',
             'Case_Folding_Mapping': '01E9',
             'Case_Folding_Status': 'C',
             'East_Asian_Width': 'N',
             'General_Category': 'Lu',
             'Line_Break': 'AL',
             'Name': 'LATIN CAPITAL LETTER K WITH CARON',
             'Script': 'Latin'}
        
Project-URL: homepage, https://pypi.org/project/youseedee
Project-URL: repository, https://github.com/simoncozens/youseedee
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: filelock
Requires-Dist: platformdirs>=4.3

# youseedee: interface to the UCD"

This module allows you to query the Unicode Character Database. The main
function to be imported is `ucd_data`:

    >>> ucd_data(0x078A)
    {'Age': '3.0',
     'Block': 'Thaana',
     'Canonical_Combining_Class': '0',
     'East_Asian_Width': 'N',
     'General_Category': 'Lo',
     'Line_Break': 'AL',
     'Name': 'THAANA LETTER FAAFU',
     'Script': 'Thaana'}

On first run, it will download the database files for you from
unicode.org. These are stored in your operating system's user cache directory (determined by [`platformdirs`](https://pypi.org/project/platformdirs/)) in a folder called `youseedee`.
These are also updated if new data is available from unicode.org

You may also use it as a command line utility:

    $ python3 -m youseedee 0x078A
    {'Age': '3.0',
     'Block': 'Thaana',
     'Canonical_Combining_Class': '0',
     'East_Asian_Width': 'N',
     'General_Category': 'Lo',
     'Line_Break': 'AL',
     'Name': 'THAANA LETTER FAAFU',
     'Script': 'Thaana'}

    $ python3 -m youseedee Ǩ
    {'Age': '1.1',
     'Block': 'Latin Extended-B',
     'Canonical_Combining_Class': '0',
     'Case_Folding_Mapping': '01E9',
     'Case_Folding_Status': 'C',
     'East_Asian_Width': 'N',
     'General_Category': 'Lu',
     'Line_Break': 'AL',
     'Name': 'LATIN CAPITAL LETTER K WITH CARON',
     'Script': 'Latin'}
