Metadata-Version: 2.1
Name: texttaglib
Version: 0.1.1a5
Summary: Python library for managing and annotating textual corpus using TextTagLib (TTL) format
Home-page: https://github.com/letuananh/texttaglib
Author: Le Tuan Anh
Author-email: tuananh.ke@gmail.com
License: MIT License
Project-URL: Bug Tracker, https://github.com/letuananh/texttaglib/issues
Project-URL: Source Code, https://github.com/letuananh/texttaglib/
Description: # texttaglib
        
        a Python library for managing and annotating text corpuses in different formats.
        
        [![ReadTheDocs Badge](https://readthedocs.org/projects/texttaglib/badge/?version=latest&style=plastic)](https://texttaglib.readthedocs.io/)
        [![Total alerts](https://img.shields.io/lgtm/alerts/g/letuananh/texttaglib.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/letuananh/texttaglib/alerts/)
        [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/letuananh/texttaglib.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/letuananh/texttaglib/context:python)
        
        ## Warning
        
        ⚠️ `texttaglib` package is now in maintenance mode for supporting legacy software only. All new development will be moved to [speach](https://pypi.org/project/speach/) library.
        
        Migration from `texttaglib` to `speach` should be trivial
        
        ```python
        # just change import statements from something like
        from texttaglib import elan
        # to 
        from speach import elan
        ```
        
        Installation
        
        ```bash
        # change
        pip install texttaglib 
        # into
        pip install speach
        ```
        
        For more information, please visit: https://github.com/neocl/speach
        
        ## Legacy
        
        texttaglib >= 0.1.1 will use embedded chirptext (based on version 0.1.x) and puchikarui (version 0.1.x) instead of latest packages to support legacy APIs.
        
        Here is the sample code:
        
        ```python
        from texttaglib import ttl
        from texttaglib.chirptext import chio
        from texttaglib.chirptext import deko
        from texttaglib.puchikarui import Schema
        ```
        
        Legacy documentation: https://texttaglib.readthedocs.io
        
Keywords: nlp,annotation,text,corpus,linguistics,ELAN,transcription
Platform: any
Classifier: Programming Language :: Python
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
