Binary package “python-pyparsing” in ubuntu trusty
Python parsing module
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.parseStri
Source package
Published versions
- python-pyparsing 2.0.1+dfsg1-1build1 in amd64 (Proposed)
- python-pyparsing 2.0.1+dfsg1-1build1 in amd64 (Release)
- python-pyparsing 2.0.1+dfsg1-1build1 in arm64 (Proposed)
- python-pyparsing 2.0.1+dfsg1-1build1 in arm64 (Release)
- python-pyparsing 2.0.1+dfsg1-1build1 in armhf (Proposed)
- python-pyparsing 2.0.1+dfsg1-1build1 in armhf (Release)
- python-pyparsing 2.0.1+dfsg1-1build1 in i386 (Proposed)
- python-pyparsing 2.0.1+dfsg1-1build1 in i386 (Release)
- python-pyparsing 2.0.1+dfsg1-1build1 in powerpc (Proposed)
- python-pyparsing 2.0.1+dfsg1-1build1 in powerpc (Release)
- python-pyparsing 2.0.1+dfsg1-1build1 in ppc64el (Proposed)
- python-pyparsing 2.0.1+dfsg1-1build1 in ppc64el (Release)