Source: pyparsing Maintainer: Debian Python Team Uploaders: Matthew Grant , Thomas Goirand Section: python Testsuite: autopkgtest-pkg-pybuild Priority: optional Build-Depends: debhelper-compat (= 13), dh-python, dh-sequence-python3, dh-sequence-sphinxdoc , flit, pybuild-plugin-pyproject, python3-all, python3-pytest , python3-railroad-diagrams , python3-setuptools, python3-sphinx Standards-Version: 4.7.2 Vcs-Browser: https://salsa.debian.org/python-team/packages/pyparsing Vcs-Git: https://salsa.debian.org/python-team/packages/pyparsing.git Homepage: https://github.com/pyparsing/pyparsing/ Rules-Requires-Root: no Package: python-pyparsing-doc Architecture: all Multi-Arch: foreign Section: doc Depends: ${misc:Depends}, ${sphinxdoc:Depends} 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. Package: python3-pyparsing Architecture: all Multi-Arch: foreign Depends: ${misc:Depends}, ${python3:Depends} Suggests: python-pyparsing-doc Provides: ${python3:Provides} 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.