Metadata-Version: 1.2
Name: babelfont
Version: 0.2.2
Summary: Routines for extracting information from fontTools glyphs
Home-page: https://github.com/simoncozens/babelfont
Author: Simon Cozens
Author-email: simon@simon-cozens.org
License: Apache Software License 2.0
Description: =========
        babelfont
        =========
        
        
        .. image:: https://img.shields.io/pypi/v/babelfont.svg
                :target: https://pypi.python.org/pypi/babelfont
        
        .. image:: https://github.com/simoncozens/babelfont/workflows/Python%20package/badge.svg
                :target: https://github.com/simoncozens/babelfont/actions/
        
        .. image:: https://readthedocs.org/projects/babelfont/badge/?version=latest
                :target: https://babelfont.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        
        Read font files into `fontParts <http://fontparts.robotools.dev/>`_
        objects and write them out again.
        
        Usage
        -----
        
        Here's how to convert a font from one format to another::
        
            from babelfont import Babelfont
        
            font = Babelfont.open("My-Font.glyphs")
            font.save("My-Font.ufo")
        
        To interact with the ``font`` object, see the `fontParts documentation <https://fontparts.robotools.dev/en/stable/objectref/objects/font.html>`_.
        
        Currently Babelfont supports:
        
        - UFO (Read and write)
        - Glyphs (Read and write)
        - OTF (Read only)
        - TTF (Read only)
        
        * Free software: Apache Software License 2.0
        
        
        =======
        History
        =======
        
        2.0.0 (2020-XX-XX)
        ------------------
        
        * Rewrite to load in font data directly instead of proxying. New interface.
        
Keywords: babelfont
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
