Metadata-Version: 1.2
Name: parsy
Version: 1.3.0
Summary: easy-to-use parser combinators, for parsing in pure Python
Home-page: https://github.com/python-parsy/parsy
Author: Jeanine Adkisson
Author-email: jneen@jneen.net
Maintainer: Luke Plant
Maintainer-email: L.Plant.98@cantab.net
License: MIT
Description: parsy
        =====
        
        |Documentation Status| |Build Status| |Codecov|
        
        Parsy is an easy way to combine simple, small parsers into complex, larger
        parsers. If it means anything to you, it's a monadic parser combinator library
        for LL(infinity) grammars in the spirit of `Parsec
        <https://github.com/haskell/parsec>`_, `Parsnip
        <http://parsnip-parser.sourceforge.net/>`_, and `Parsimmon
        <https://github.com/jneen/parsimmon>`_. But don't worry, it has really good 
        documentation and it doesn't say things like that!
        
        Parsy requires Python 3.3 or greater.
        
        Links:
        
        - `Documentation <http://parsy.readthedocs.io/en/latest/>`_
        - `History and changelog <http://parsy.readthedocs.io/en/latest/history.html>`_
        - `PyPI <https://pypi.python.org/pypi/parsy/>`_
        
        To contribute, please create a fork and submit a pull request on GitHub,
        after checking the "contributing" section of the docs. Thanks!
        
        If you like parsy and think it should be better known, you could:
        
        * Star this project on GitHub.
        * `Vote <https://github.com/vinta/awesome-python/pull/993>`_ for it being included on awesome-python.
        
        Parsy was originally written by `Jeanine Adkisson <https://github.com/jneen>`_,
        with contributions by other people as can be found in the git commit history.
        
        .. |Documentation Status| image:: https://readthedocs.org/projects/parsy/badge/?version=latest
           :target: http://parsy.readthedocs.io/en/latest/?badge=latest
        .. |Build Status| image:: https://travis-ci.org/python-parsy/parsy.svg?branch=master
           :target: https://travis-ci.org/python-parsy/parsy
        .. |Codecov| image:: https://img.shields.io/codecov/c/github/python-parsy/parsy/master.svg
           :target: https://codecov.io/gh/python-parsy/parsy
        
Keywords: parser parsers parsing monad combinators
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Compilers
Classifier: Topic :: Software Development :: Interpreters
Classifier: Topic :: Text Processing
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
