Metadata-Version: 2.1
Name: TEfy
Version: 0.1.3
Summary: A very basic wrapper for conversions from doc, docx and odt to TEI XML
Home-page: https://github.com/03b8/tefy
Author: Theo Costea
Author-email: theo.costea@gmail.com
License: UNKNOWN
Description: [![Build Status](https://travis-ci.org/03b8/TEfy.svg?branch=master)](https://travis-ci.org/03b8/TEfy)
        # TEfy
        TEfy was born out of the need to streamline the conversion of *.doc, 
        *.docx and *.odt documents into TEI XML when using Python scripts.
        It's a very basic wrapper around the [OxGarage](https://github.com/TEIC/oxgarage) API at 
        [oxgarage.tei-c.org/ege-webservice](http://oxgarage.tei-c.org) and covers a small subset of conversions, namely
        from doc, docx and odt to TEI XML. The conversion result is output
        as an [lxml](https://github.com/lxml/lxml) etree Element.
        ## Usage
        You can install TEfy from [PyPI](https://pypi.org/project/TEfy/)
        (```$ pip install TEfy```) and convert let's say an ODT document 
        like this:
        
        ```python
        from TEfy import OxGaWrap
        example_file = OxGaWrap('path/to/example.odt')
        example_file.convert_to_tei()
        etree_object = example_file.get_et_output()
        ```
        
        ## Feedback
        I'm an amateur pythonista and this is just one of my clumsy baby steps, so any feedback on how to improve TEfy is **very** welcome!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
