Metadata-Version: 1.1
Name: pyparsec
Version: 0.7.1
Summary: Parsec From Haskell Python 3 Portable
Home-page: https://github.com/Dwarfartisan/pyparsec
Author: marsliu
Author-email: mars.liu@outlook.com
License: MIT
Description: # PyParsec
        
        PyParsec is a Haskell combinator library, PyParsec is a parsec library for python 3+
        
        ## Installation
        
        ```
        pip install pyparsec 
        ```
        
        ## Usage
        
        Just like this:
        
        ```
        >>> import parsec
        >>> simple = "It is a simple string."
        >>> st = BasicState(simple)
        >>> p = many(eq("I"))
        >>> p(st)
        ['I']
        ```
        
        ## What's New
        
        ### 0.6.1
        
         - add built in combinators decorator
         - add ahead
        
        ### 0.7.0
        
         - add result class
        
        ### 0.7.1
        
         - document
        
        
Platform: UNKNOWN
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
