|
|
|
Linux temps réel embarqué et outils de développements
|
Technique |
|
|
python-pyparsing
| python-pyparsing | Python parsing module | | Priority | |
| Section | python |
| Installed size | 1488 |
| Maintainer | Tommi Virtanen <tv@debian.org> |
| Architecture | all |
| Version | 1.4.2-1.1 |
| Depends | python, python-support (>= 0.2) |
| Suggests | pyopenssl-doc |
| File name | pool/main/p/pyparsing/python-pyparsing_1.4.2-1.1_all.deb |
| Description | 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) |
|
|
|