chpeg
Parsing Expression Grammar (PEG) bytecode parser/compiler library (by ChrisHixon)
pyparsing
Python library for creating PEG parsers (by github-pyparsing)
chpeg | pyparsing | |
---|---|---|
1 | 13 | |
13 | 2,302 | |
- | 1.1% | |
0.0 | 9.3 | |
almost 3 years ago | 15 days ago | |
C | Python | |
BSD 3-clause "New" or "Revised" License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
chpeg
Posts with mentions or reviews of chpeg.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-05-07.
-
TatSu takes grammars in variation of EBNF, outputs memoizing Python PEG parsers
To add to your list I just found this project https://github.com/ChrisHixon/chpeg it has good performance and it's relatively simple compared to others.
pyparsing
Posts with mentions or reviews of pyparsing.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-08-24.
-
Pyparsing 3.1.0 released
After over a year since the last release of pyparsing, I've bundled up all the bug-fixes and changes, and they are now released as pyparsing 3.1.0. Visit this link for the details.
-
Need help developing an interpreter
Look into "parser combinators" for building an interpreter. There's a few ones out there, but PyParsing is one I've seen around that looks pretty nifty.
-
About a month ago I posted about PRegEx, an open-source project which I had started that you can use to build RegEx patterns programmatically, which the subreddit seem to like. This prompted me to keep working on it, and one month later, PRegEx v2.0.0 is out!
I havent found a way to specify an exact character match in pyparsing - https://github.com/pyparsing/pyparsing/discussions/443
-
Python toolkits
STDOUT: Lark or pyparsing
- TatSu takes grammars in variation of EBNF, outputs memoizing Python PEG parsers
-
Parser Combinators in Haskell
Since it is not mentioned in the article: Python users may also want to check out pyparsing [0]. It is slightly different from Parsec/FParsec (for instance, it ignores all whitespace by default), but I think it is a really good project.
[0]: https://github.com/pyparsing/pyparsing/
-
Pyparsing 3.0.x - off to a rocky start, but I think 3.0.6 looks fairly solid
Here is the page of all the new changes and features in pyparsing 3.0.
- luna is a Domain specific language that translates to regex. It's an attempt to make regex more readable.
-
Recommended way to read and parse a couple thousand small files
Your pyparsing parser might benefit from a tune-up. This page has some performance tips: https://github.com/pyparsing/pyparsing/wiki/Performance-Tips.
-
Script for extracting info from a SQL File
If your SQL has fairly complex structure, you will need a full blown SQL parser. If your statements are mostly simple select, you can get pretty close with Pyparsing, here is an example.
What are some alternatives?
When comparing chpeg and pyparsing you can also consider the following projects:
TatSu - 竜 TatSu generates Python parsers from grammars in a variation of EBNF
sly - Sly Lex Yacc
iregex - A way to write regex with objects instead of strings.
pegpy - Nez Parser for Python
assert-combinators - Functional assertion combinators.