Library porting many of the combinators from Haskell's Megaparsec for use with Python's Parsy.
Project description
Work In Progress - ignore for now ;)
Initial motivation for this project was to build an indentation-sensitive parser. This is problematic for any parser library which is limited to expressing context-free grammars (which is most of them), unless you use a separate pre-processing step (like e.g. the parser for the Python language does).
Googling around this topic I came upon https://markkarpov.com/tutorial/megaparsec.html#indentationsensitive-parsing
So in Haskell-land we can find ‘Monadic Parser Combinators’, which do not have this restriciton to CFGs. And the Megaparsec library defines many useful combinators, including some which designed specifically to help with building indentation-sensitive parsers.
But… it was difficult for me to learn to make a parser for the first time and learn Haskell simultaneously. So I looked around for a Python option and found the brilliant Parsy library. It provides an implementation of ‘Monadic Parser Combinators’ in Python.
Nicely and simply explained here:
So in Megaparsy I have ported a bunch of the Megaparsec combinators over to Parsy. It is surprising how smoothly it went and how similar they come out - this is testament to the genius of Parsy, which is where all the clever part is.
(I haven’t done all of them yet, but the indentation-sensitive ones are here)
I’ve also roughly translated across the property-based tests from their Haskell QuickCheck originals into Python Hypothesis ones.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file megaparsy-0.1.4.tar.gz
.
File metadata
- Download URL: megaparsy-0.1.4.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b5001a7c9322976e9b38b5baa64af93888a1dab943f6162d3d80afb25763fd6 |
|
MD5 | 5131694146321b43f99c2082a5c9e697 |
|
BLAKE2b-256 | 5ef5495b4da4f27aced864854e77eacbe86f5e33682bf26d8f532aa0f3050e5b |