Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sighingnow/parsec.py
A universal Python parser combinator library inspired by Parsec library of Haskell.
https://github.com/sighingnow/parsec.py
parser-combinators python
Last synced: 21 days ago
JSON representation
A universal Python parser combinator library inspired by Parsec library of Haskell.
- Host: GitHub
- URL: https://github.com/sighingnow/parsec.py
- Owner: sighingnow
- License: mit
- Created: 2015-11-02T14:54:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-06T15:19:53.000Z (5 months ago)
- Last Synced: 2024-10-08T12:42:25.482Z (about 1 month ago)
- Topics: parser-combinators, python
- Language: Python
- Homepage: https://parsecpy.readthedocs.io/en/latest/
- Size: 157 KB
- Stars: 214
- Watchers: 7
- Forks: 36
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-combinator-parsers - parsec.py
README
parsec.py
=========.. image:: https://img.shields.io/travis/sighingnow/parsec.py/master.svg
:target: https://travis-ci.org/sighingnow/parsec.py?branch=master.. image:: https://img.shields.io/pypi/v/parsec.svg
:target: https://pypi.python.org/pypi/parsec.. image:: https://img.shields.io/pypi/pyversions/parsec.svg
:target: https://pypi.python.org/pypi/parsec.. image:: https://img.shields.io/pypi/dm/parsec.svg
:target: https://pypi.python.org/pypi/parsec.. image:: https://img.shields.io/github/license/sighingnow/parsec.py.svg
:target: https://github.com/sighingnow/parsec.py/blob/master/LICENSEA universal Python parser combinator library inspired by Parsec library of Haskell.
Parsec in Real World
--------------------We have noticed `parsec` helps users in many real world cases as follows:
+ `Simply using parsec in python `_
+ `Parsing date from text with Python's parsec.py library `_
+ `Parsing with the .bind() operator `_