dwww Home


Documentation for packages, which contain /usr/share/doc/python-pyparsing-doc/copyright:

Package: python-pyparsing-doc

Description: alternative to creating and executing simple grammars - doc
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 documentation for python-pyparsing.
Homepage: https://github.com/pyparsing/pyparsing/
copyright | Debian changelog

Other documents:

/usr/share/doc/python-pyparsing-doc /usr/share/doc/python-pyparsing-doc/examples
/usr/share/doc/python-pyparsing-doc/examples/statemachine /usr/share/doc/python-pyparsing-doc/html
/usr/share/doc/python-pyparsing-doc/html/_sources /usr/share/doc/python-pyparsing-doc/html/_static

Generated by dwww version 1.14 on Sat Apr 19 20:25:53 CEST 2025.