fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

8.8K
active users

#pyparsing

0 posts0 participants0 posts today
Paul McGuire<p>If you maintain an open source package, set up a standing search on scholar.google.com for your package name. You&#39;ll get gmail notifications of published papers referencing your package.</p><p>It&#39;s truly gratifying to see students and research teams making use of my pyparsing package to parse data sets and DSLs, so they can quickly get past the pesky parser development stage and get on with the business of their actual field of study. <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/google" class="mention hashtag" rel="tag">#<span>google</span></a> <a href="https://fosstodon.org/tags/oss" class="mention hashtag" rel="tag">#<span>oss</span></a> <a href="https://fosstodon.org/tags/opensource" class="mention hashtag" rel="tag">#<span>opensource</span></a></p>
Paul McGuire<p>Well, I had a minor stumble releasing <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> 3.2.2 this past weekend, with a bug (Issue #600) that snuck past several thousand unit tests. So I added 1 new test with several hundred new cases that caught that bug, then fixed it (and a sibling bug 10 lines of code away from the first one). Great immediate notice of failing CI pipelines from diligent users, I was able to get 3.2.3 out with the fix Monday evening. And all&#39;s right with the world again (the <a href="https://fosstodon.org/tags/Python" class="mention hashtag" rel="tag">#<span>Python</span></a> world, anyway).</p>
Paul McGuire<p>Pyparsing 3.2.2 cleans up a formerly internal-only utility method make_compressed_re(), and makes it part of the public API. Given a list of strings, it generates a regex to match those strings and only those (so no cheating like &quot;.*&quot;).</p><p>Here are before/after expressions for matching chemical symbols.</p><p><a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/regex" class="mention hashtag" rel="tag">#<span>regex</span></a></p>
Habr<p>Парсер для подростков с помощью pyparsing</p><p>Привет, Хабр! Если ты подросток и начинаешь свой путь в программировании, или просто хочешь понять, как программы анализируют текст и превращают его в структуру, эта статья для тебя. Сегодня поговорим о том, что такое парсер, зачем он нужен и как с помощью библиотеки pyparsing создать свой собственный парсер — основу для мини‑языка. Разберём, как создать парсер для арифметических выражений, добавить поддержку скобок, встроить вычисление выражений, работать с переменными и обрабатывать ошибки.</p><p><a href="https://habr.com/ru/companies/otus/articles/887892/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">habr.com/ru/companies/otus/art</span><span class="invisible">icles/887892/</span></a></p><p><a href="https://zhub.link/tags/python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>python</span></a> <a href="https://zhub.link/tags/%D0%BF%D0%B0%D1%80%D1%81%D0%B5%D1%80" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>парсер</span></a> <a href="https://zhub.link/tags/pyparsing" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pyparsing</span></a></p>
Paul McGuire<p><a href="https://fosstodon.org/tags/Pyparsing" class="mention hashtag" rel="tag">#<span>Pyparsing</span></a> API going back to version 1.0.0 (2003) has used a camelCase name scheme for its methods and argument names. In versions 3.0-3.1 (Oct 2021-Jun 2023), I added PEP8-compliant snake_case names, while maintaining synonym definitions for the legacy names for backward compatibility.</p><p>Soon, pyparsing will begin emitting DeprecationWarnings for the legacy names. To ease this transition, the next release 3.2.2 will include a utility to convert in place scripts that use the legacy names. <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a></p>
Paul McGuire<p>Pyparsing sightings - recent posts/pages using pyparsing (2/2):</p><p>- ciscoconfparse parses configuration files for various network devices using pyparsing<br /> <a href="https://pypi.org/project/ciscoconfparse2/" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">pypi.org/project/ciscoconfpars</span><span class="invisible">e2/</span></a></p><p>- moto is a mocking package for AWS boto API, using pyparsing for an internal infix notation parser<br /> <a href="https://github.com/getmoto/moto" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="">github.com/getmoto/moto</span><span class="invisible"></span></a></p><p>- Pegasus SaaS application builder uses pyparsing internally<br /> <a href="https://docs.saaspegasus.com/" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="">docs.saaspegasus.com/</span><span class="invisible"></span></a></p><p>- EasyABC is an editor for the ABC music notation language<br /> <a href="https://github.com/jwdj/EasyABC" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="">github.com/jwdj/EasyABC</span><span class="invisible"></span></a></p><p><a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a></p>
Paul McGuire<p>Pyparsing sightings - some recent posts/pages using pyparsing (1/2):</p><p>- Pyparsing is embedded as a parsing engine for Juniper Networks Junos PyEZ automation environment for smart devices.<br /> <a href="https://www.juniper.net/documentation/us/en/software/junos-pyez/junos-pyez-developer/junos-pyez-developer.pdf" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://www.</span><span class="ellipsis">juniper.net/documentation/us/e</span><span class="invisible">n/software/junos-pyez/junos-pyez-developer/junos-pyez-developer.pdf</span></a></p><p>- Pyparsing included in the examples for the Python Packaging User Guide.<br /> <a href="https://packaging.python.org/en/latest/guides/licensing-examples-and-user-scenarios/" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">packaging.python.org/en/latest</span><span class="invisible">/guides/licensing-examples-and-user-scenarios/</span></a></p><p>- Papercrawler uses pyparsing to extract metadata from published papers, journals, and conference proceedings.<br /> <a href="https://github.com/sucv/paperCrawler" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="">github.com/sucv/paperCrawler</span><span class="invisible"></span></a></p><p><a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/parsing" class="mention hashtag" rel="tag">#<span>parsing</span></a></p>
Paul McGuire<p><span class="h-card" translate="no"><a href="https://mastodon.social/@jshaffstall" class="u-url mention">@<span>jshaffstall</span></a></span> I&#39;m glad to hear pyparsing worked so well for you! Check out the pyparsing spinoff project plusminus, which wraps pyparsing&#39;s 𝚒𝚗𝚏𝚒𝚡_𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗 function in an API. plusminus includes a dice roller in its examples (though it does not include trig functions - that is one crazy dice roll expression!). <a href="https://github.com/pyparsing/plusminus" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="">github.com/pyparsing/plusminus</span><span class="invisible"></span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a></p>
Paul McGuire<p>With the latest 3.2.1 release of pyparsing, I also cleaned up the README for the examples directory. Much improved over the hand-coded HTML from 20+ years ago!</p><p><a href="https://github.com/pyparsing/pyparsing/blob/master/examples/README.md" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">github.com/pyparsing/pyparsing</span><span class="invisible">/blob/master/examples/README.md</span></a></p><p><a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a></p>
Paul McGuire<p>I just released pyparsing 3.2.1 with a very cool addition to the railroad diagrams that pyparsing generates for its parsers - non-terminal diagram elements now link to their definitions elsewhere in the diagram! This is pretty handy when the diagram is for a complex parser, as in this demo of a parser/evaluator for time references like &quot;3 weeks from today&quot; or &quot;0800 two days from now&quot; or &quot;in exactly twenty-four hours&quot;. <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/parser" class="mention hashtag" rel="tag">#<span>parser</span></a> <a href="https://fosstodon.org/tags/railroaddiagram" class="mention hashtag" rel="tag">#<span>railroaddiagram</span></a></p>
Paul McGuire<p>I&#39;m seeing a number of responses from pyparsing users (or matplotlib users) that they are getting a version of pyparsing that is not compatible with their version of Python (they are running Python 3.8 or older, but the new pyparsing release requires Python 3.9 or later). After some experimenting, I found this `requirements.txt` to help in selecting the right pyparsing version:</p><p>matplotlib<br />pyparsing&gt;=3.2;python_version&gt;=&quot;3.9&quot;<br />pyparsing&gt;=3.1;python_version&lt;&quot;3.9&quot;</p><p><a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/matplotlib" class="mention hashtag" rel="tag">#<span>matplotlib</span></a></p>
Paul McGuire<p>Pyparsing 3.2.0 pushed to pypi! See the docs at <a href="https://pyparsing-docs.readthedocs.io/en/3.2.0_docs/" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">pyparsing-docs.readthedocs.io/</span><span class="invisible">en/3.2.0_docs/</span></a> , including &quot;What&#39;s New&quot; sections going back to 3.0. Note: this version drops support for Python &lt; 3.9, so give it a look if your project uses it! <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/parsing" class="mention hashtag" rel="tag">#<span>parsing</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a></p>
Paul McGuire<p>Pyparsing 3.2.0rc1 is now out. There are a lot of nice things and bugfixes in this release - please check it out (and see if any of the breaking changes affect your code): <a href="https://github.com/pyparsing/pyparsing/releases/tag/3.2.0rc1" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">github.com/pyparsing/pyparsing</span><span class="invisible">/releases/tag/3.2.0rc1</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a></p>
Paul McGuire<p>Attention <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> users: I just pushed release 3.2.0b3, which will be the last beta before I push out 3.2.0. This includes:</p><p>- POSSIBLE BREAKING CHANGE: Fixed bug in `transform_string()` where whitespace in the input string was not properly preserved in the output string.</p><p>- `mypy` type checking is now run as part of pyparsing&#39;s CI.</p><p>- Exception message format can now be customized, by overriding `ParseBaseException.format_message`.</p><p>Full release notes here: <a href="https://github.com/pyparsing/pyparsing" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="">github.com/pyparsing/pyparsing</span><span class="invisible"></span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a></p>
Paul McGuire<p>Attention pyparsing users: I just pushed release 3.2.0b1 which mostly just drops support for Python 3.6-3.8, but also changes some exception messages. Please give this release a try before I push the final release in early October.</p><p>Also includes:<br />- some nice enhancements to mongodb_query_expression.py<br />- a parser for the Lox language defined in Robert Nystrom&#39;s &quot;Crafting Interpreters&quot;</p><p>Full release notes here: <a href="https://github.com/pyparsing/pyparsing/releases/tag/3.2.0b1" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">github.com/pyparsing/pyparsing</span><span class="invisible">/releases/tag/3.2.0b1</span></a></p><p><a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/mongodb" class="mention hashtag" rel="tag">#<span>mongodb</span></a> <a href="https://fosstodon.org/tags/pymongo" class="mention hashtag" rel="tag">#<span>pymongo</span></a> <a href="https://fosstodon.org/tags/craftinginterpreters" class="mention hashtag" rel="tag">#<span>craftinginterpreters</span></a></p>
Paul McGuire<p>Take 2 on the mongodb query expression transformer - I had basic scalar expression logic working before, but had a couple of bugs in working with arrays. Also added support for embedded docs and regex matching. Wrote a 25-line repl to take my human-readable queries, convert to Mongo&#39;s nested dict query and run find() against their mflix learning dataset, running in a local Docker container. <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/mongodb" class="mention hashtag" rel="tag">#<span>mongodb</span></a></p>
Paul McGuire<p>Refreshing my MongoDB skills this week, and I remember thinking it would be nice to have a converter for query expressions, to transform normal infix notation into the nested dict used by the `collection.find()` function. So here is the output of a pyparsing program to do that. See the before/after examples below. The script is included in the pyparsing examples directory at <a href="https://github.com/pyparsing/pyparsing/blob/master/examples/mongodb_query_expression.py" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">github.com/pyparsing/pyparsing</span><span class="invisible">/blob/master/examples/mongodb_query_expression.py</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/mongodb" class="mention hashtag" rel="tag">#<span>mongodb</span></a></p>
Paul McGuire<p>A balanced testimonial from a new <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> user: &quot;I&#39;m not gonna sugarcoat that pyparsing might need more examples on documents for dummies like me who had to search hours how to use line_end/LineEnd() from zero base - But darn, this is one very interactive and fun way to create parser! Begone, the pain of YACC and Lexer! I now will die using this for all the parser need I&#39;ll ever have in lifetime!&quot; That&#39;s good enough for me! :D [posted as a comment on the SO answer: <a href="https://stackoverflow.com/a/78697404/165216" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">stackoverflow.com/a/78697404/1</span><span class="invisible">65216</span></a>]</p>
Paul McGuire<p>Just to report that my 3 open source packages pyparsing, littletable, and logmerger (and by extension, textual, which is used by logmerger) all run successfully on Python 3.13b2 (default build) <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/python313" class="mention hashtag" rel="tag">#<span>python313</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/littletable" class="mention hashtag" rel="tag">#<span>littletable</span></a> <a href="https://fosstodon.org/tags/logmerger" class="mention hashtag" rel="tag">#<span>logmerger</span></a> <a href="https://fosstodon.org/tags/textual" class="mention hashtag" rel="tag">#<span>textual</span></a></p>
Paul McGuire<p>Got an issue submitted for pyparsing this week, and it retraces some steps I&#39;ve written up before. So I put together another pyparsing blog post, walking through this common pitfall for pyparsing beginners: <a href="https://thingspython.wordpress.com/2024/06/01/repetition-in-pyparsing-why-is-it-so-dumb/" target="_blank" rel="nofollow noopener" translate="no"><span class="invisible">https://</span><span class="ellipsis">thingspython.wordpress.com/202</span><span class="invisible">4/06/01/repetition-in-pyparsing-why-is-it-so-dumb/</span></a> <a href="https://fosstodon.org/tags/python" class="mention hashtag" rel="tag">#<span>python</span></a> <a href="https://fosstodon.org/tags/pyparsing" class="mention hashtag" rel="tag">#<span>pyparsing</span></a> <a href="https://fosstodon.org/tags/parsing" class="mention hashtag" rel="tag">#<span>parsing</span></a></p>