Skip to content
Sections
>> Ubuntu >> Packages >> feisty >> python >> python-pyparsing
dapper  ] [  feisty  ] [  gutsy  ] [  hardy  ] [  intrepid  ]
[ Source: pyparsing  ]

Package: python-pyparsing (1.4.2-1.1ubuntu1) [universe]

Links for python-pyparsing

Ubuntu Resources:

Download Source Package pyparsing:

Maintainer:

Please consider filing a bug or asking a question via Launchpad before contacting the maintainer directly.

Original Maintainer (usually from Debian):

  • Tommi Virtanen

It should generally not be necessary for users to contact the original maintainer.

Similar packages:

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 parsing import Word, alphas
 greet = Word(alphas) + "," + Word(alphas) + "!"
 hello = "Hello, World!"
 print hello, "->", greet.parseString(hello)

Other Packages Related to python-pyparsing

  • depends
  • recommends
  • suggests
  • dep: python-support (>= 0.2)
    automated rebuilding support for python modules

Download python-pyparsing

Download for all available architectures
Architecture Package Size Installed Size Files
all 380.8 kB1492 kB [list of files]