Metadata-Version: 1.2
Name: chamd
Version: 0.4.1
Summary: Conversion and cleaning of CHILDES CHA files into PaQu Plaintext Metadata Format
Home-page: https://github.com/UUDigitalHumanitieslab/chamd
Author: Digital Humanities Lab, Utrecht University
Author-email: digitalhumanities@uu.nl
License: MIT
Description: .. image:: https://travis-ci.org/UUDigitalHumanitieslab/chamd.svg?branch=master
            :target: https://travis-ci.org/UUDigitalHumanitieslab/chamd
        
        Conversion and cleaning of CHILDES CHA files into PaQu Plaintext
        Metadata Format (to convert to Alpino).
        
        .. code:: bash
        
           pip install chamd
           chamd --help
        
        Running from project:
        
        .. code:: bash
        
            python -m chamd --help
        
        Import as Library
        =================
        
        This way the library can be used to read CHAT file (contents) from an external application.
        
        .. code:: python
        
            from chamd import ChatReader
            reader = ChatReader()
            chat = reader.read_file('example.cha') # or read_string
            
            for item in chat.metadata:
                print(item)
            for line in chat.lines:
                for item in line.metadata:
                    print(item)
                print(line.text)
        
        
        Upload to PyPi
        ==============
        
        .. code:: bash
        
           python setup.py sdist
           twine upload dist/*
        
        Run Tests
        =========
        
        .. code:: bash
        
            python -m unittest discover tests/
        
Platform: UNKNOWN
Requires-Python: >=3.6, <4
