Metadata-Version: 1.1
Name: textparser
Version: 0.9.0
Summary: Text parser.
Home-page: https://github.com/eerimoq/textparser
Author: Erik Moqvist
Author-email: erik.moqvist@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: |buildstatus|_
        |coverage|_
        
        About
        =====
        
        A text parser written in the Python language.
        
        The parser is `pretty fast`_, but not as user friendly as `PyParsing`_
        and `Lark`_.
        
        Project homepage: https://github.com/eerimoq/textparser
        
        Documentation: http://textparser.readthedocs.org/en/latest
        
        Credits
        =======
        
        - Thanks `PyParsing`_ for a user friendly interface. Many of
          ``textparser``'s class names are taken from this project.
        
        Installation
        ============
        
        .. code-block:: python
        
            pip install textparser
        
        Example usage
        =============
        
        To be added.
        
        Contributing
        ============
        
        #. Fork the repository.
        
        #. Install prerequisites.
        
           .. code-block:: text
        
              pip install -r requirements.txt
        
        #. Implement the new feature or bug fix.
        
        #. Implement test case(s) to ensure that future changes do not break
           legacy.
        
        #. Run the tests.
        
           .. code-block:: text
        
              make test
        
        #. Create a pull request.
        
        .. |buildstatus| image:: https://travis-ci.org/eerimoq/textparser.svg?branch=master
        .. _buildstatus: https://travis-ci.org/eerimoq/textparser
        
        .. |coverage| image:: https://coveralls.io/repos/github/eerimoq/textparser/badge.svg?branch=master
        .. _coverage: https://coveralls.io/github/eerimoq/textparser
        
        .. _pretty fast: https://github.com/eerimoq/textparser/blob/master/examples/benchmarks/json/main.py#L15-L25
        .. _PyParsing: https://github.com/pyparsing/pyparsing
        .. _Lark: https://github.com/lark-parser/lark
        
Keywords: parser
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
