dwww Home


Documentation for packages, which contain /usr/share/doc/python3-pyparsing/changelog.gz:

Package: python3-pyparsing

Description: alternative to creating and executing simple grammars - Python 3.x
The parsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The parsing module provides a library of classes that client code uses to construct the grammar directly in Python code.
Here's an example:
 from pyparsing import Word, alphas
 greet = Word(alphas) + "," + Word(alphas) + "!"
 hello = "Hello, World!"
 print hello, "->", greet.parseString(hello)
This package contains the Python 3.x version of python-pyparsing.
Homepage: https://github.com/pyparsing/pyparsing/
copyright | changelog | Debian changelog

Other documents:

/usr/share/doc/python3-pyparsing

Generated by dwww version 1.15 on Sun Jun 16 15:39:11 CEST 2024.