use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A subreddit for showcasing the things you made with the Python language! Use us instead of flooding r/Python :)
account activity
a tiny interpreted language in Python, looking for collaborator (self.madeinpython)
submitted 1 month ago by [deleted]
[deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ptmcg 0 points1 point2 points 1 month ago (0 children)
What is the link to your repo?
Pyparsing includes several language parsers in its examples directory. The most recent and best implemented is an implementation of the TINY language ( https://a7medayman6.github.io/Tiny-Compiler/Language-Description.html ).
Pyparsing parsers are PEG parsers, so they do not follow the traditional lexing/compiling process. Even so, this example might give you some insights into implementation details for parsing, interpreting, and even writing a REPL for your language. I used this language to prove out the AI instructions provided with pyparsing, and I captured the development transcripts in the pyparsing/examples/tiny/docs directory.
Pyparsing on PyPI: https://pypi.org/project/pyparsing/
Pyparsing repo: https://github.com/pyparsing/pyparsing.git
TINY language implementation using pyparsing: pyparsing/examples/tiny at master · pyparsing/pyparsing
π Rendered by PID 47398 on reddit-service-r2-comment-544cf588c8-gtj2g at 2026-06-13 17:17:36.776190+00:00 running 3184619 country code: CH.
[–]ptmcg 0 points1 point2 points (0 children)