Paket: python-pyparsing (1.5.2-1ubuntu1) [universe]
Links für python-pyparsing
Ubuntu-Ressourcen:
Quellcode-Paket pyparsing herunterladen:
Betreuer:
Please consider filing a bug or asking a question via Launchpad before contacting the maintainer directly.
Original Maintainers (usually from Debian):
- Kevin Coyner
- Debian Python Modules Team (E-Mail-Archiv)
- Torsten Marek
It should generally not be necessary for users to contact the original maintainer.
Externe Ressourcen:
- Homepage [pyparsing.wikispaces.com]
Ähnliche Pakete:
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)
Andere Pakete mit Bezug zu python-pyparsing
|
|
|
-
- dep: python-support (>= 0.90.0)
- automated rebuilding support for Python modules
python-pyparsing herunterladen
| Architektur | Paketgröße | Größe (installiert) | Dateien |
|---|---|---|---|
| all | 593,3 kB | 3.384,0 kB | [Liste der Dateien] |