pyparsing 2.2.0+dfsg1-2 source package in Ubuntu
Changelog
pyparsing (2.2.0+dfsg1-2) unstable; urgency=medium * Uploading to unstable. -- Thomas Goirand <email address hidden> Sun, 25 Feb 2018 20:32:31 +0000
Upload details
- Uploaded by:
- Debian Python Modules Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Modules Team
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Bionic | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing_2.2.0+dfsg1-2.dsc | 2.4 KiB | fb7dbda8c89bbddf2d96fab4bf770a59f53b08a8f727652556de98e20e1e74ea |
pyparsing_2.2.0+dfsg1.orig.tar.gz | 1.1 MiB | 8cf2bde582aa28b854cb96d225606caae902956136e5050ca62125371b06ef8c |
pyparsing_2.2.0+dfsg1-2.debian.tar.xz | 7.8 KiB | f968a17566c942a919fe7024a15bbbb2f1cce5af9c50e01e57ad9580b1e12591 |
Available diffs
- diff from 2.1.10+dfsg1-1 to 2.2.0+dfsg1-2 (186.5 KiB)
No changes file available.
Binary packages built by this source
- pypy-pyparsing: No summary available for pypy-pyparsing in ubuntu disco.
No description available for pypy-pyparsing in ubuntu disco.
- python-pyparsing: No summary available for python-pyparsing in ubuntu eoan.
No description available for python-pyparsing in ubuntu eoan.
- python-pyparsing-doc: alternative to creating and executing simple grammars - doc
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)
.
This package contains documentation for python-pyparsing.
- python3-pyparsing: No summary available for python3-pyparsing in ubuntu cosmic.
No description available for python3-pyparsing in ubuntu cosmic.