Metadata-Version: 1.1
Name: UniCover
Version: 0.1b2
Summary: Displays Unicode chars coverage of system fonts
Home-page: https://github.com/drastus/unicover
Author: Michał Górny
Author-email: zrchos@gmail.com
License: GNU GPL v3
Description: **UniCover** is a simple command-line tool displaying information about Unicode coverage of system fonts. It should work on systems that utilize Fontconfig (Linux and other Unix-like).
        
        Dependencies: Python-fontconfig, freetype-py.
        
        Installation
        ============
        
        In most cases issuing the following command (as root user) will be sufficient:
        
        .. code-block:: bash
        
        	pip3 install --pre UniCover
        
        Basic usage
        ===========
        
        To display character coverage of given font file or font family, type:
        
        .. code-block:: bash
        
        	unicover -f font_file
        
        or
        
        .. code-block:: bash
        
        	unicover -f font_family
        
        To list all system fonts that contain the specified character, type:
        
        .. code-block:: bash
        
        	unicover -c character
        
        or
        
        .. code-block:: bash
        
        	unicover -c character_hex_code
        
        To display all Unicode blocks supported by system fonts, type:
        
        .. code-block:: bash
        
        	unicover -g
        
        To list all characters supported by system fonts (output will be very long), type:
        
        .. code-block:: bash
        
        	unicover -l
        
        It is also possible to combine these two options:
        
        .. code-block:: bash
        
        	unicover -gl
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Console Fonts
Classifier: Topic :: Text Processing :: Fonts
Classifier: Topic :: Utilities
