etch  ] [  etch-m68k  ] [  lenny  ] [  squeeze  ] [  sid  ] [  experimental  ]
[ Source: pyparsing  ]

Package: python-pyparsing (1.5.0-1)

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.parseString(hello)

Tags: Software Development: Code Generation, Python Development, Libraries, Implemented in: Python

Other Packages Related to python-pyparsing

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

Download python-pyparsing

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