DEBFIND Suche nach Debian-Paketen

Suchplatform für Softwarepakete und Archive Debian-basierter Linux-Distributionen

beta ! Diese website wird noch weiterentwickelt.

Liste aller Kategorien/Sektionen | Suchmaske | Haftungsausschluß

Paketbeschreibung


Paketnamepython-pyparsing
BeschreibungPython parsing module
Archiv/RepositoryOffizielles Debian Archiv squeeze (main)
Version1.5.2-2
Sektionpython
Prioritätoptional
Installierte Größe3376 Byte
Hängt ab vonpython-support (>= 0.90.0)
Empfohlene Pakete
PaketbetreuerKevin Coyner
Quellepyparsing
Paketgröße606536 Byte
Prüfsumme MD5285d9b0320fcdb7060930a1c170d05f0
Prüfsumme SHA15d0ccce501498c3ed7a98e53b14f8622f735982f
Prüfsumme SHA25600bf8332c5a061539bb66341327d1a24ffe1c99a10398aa907166ecb36c659af
Link zum Herunterladenpython-pyparsing_1.5.2-2_all.deb
Ausführliche BeschreibungThe 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)


Impressum
Linux is a registered trademark of Linus Torvalds