パッケージ: python-pyparsing (1.5.2-1ubuntu1) [universe]
python-pyparsing に関するリンク
Ubuntu の資源:
pyparsing ソースパッケージをダウンロード:
メンテナ:
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 (メールアーカイブ)
- Torsten Marek
It should generally not be necessary for users to contact the original maintainer.
外部の資源:
- ホームページ [pyparsing.wikispaces.com]
類似のパッケージ:
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)
その他の python-pyparsing 関連パッケージ
|
|
|
-
- dep: python-support (>= 0.90.0)
- automated rebuilding support for Python modules