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 Ubuntu Archiv lucid (universe)
Version1.5.2-1ubuntu1
Sektionuniverse/python
Prioritätoptional
Installierte Größe3384 Byte
Hängt ab vonpython-support (>= 0.90.0)
Empfohlene Pakete
PaketbetreuerUbuntu MOTU Developers
Quellepyparsing
Paketgröße607516 Byte
Prüfsumme MD5742ac6b98f7bcd58a44a69a55c27b57b
Prüfsumme SHA1eeead735ded9d98e19347bb320c396a26ac57968
Prüfsumme SHA25668c5c4e7976cab0a4c044c86bba5ddef60933a34d1802d5285e39232e960b299
Link zum Herunterladenpython-pyparsing_1.5.2-1ubuntu1_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