pyparsing 2.0.3+dfsg1-1 source package in Ubuntu
Changelog
pyparsing (2.0.3+dfsg1-1) unstable; urgency=medium * Team upload. * New upstream release. * debian/watch: Use the PyPI URL. -- Barry Warsaw <email address hidden> Thu, 16 Oct 2014 09:32:41 -0400
Upload details
- Uploaded by:
- Kevin Coyner
- Uploaded to:
- Sid
- Original maintainer:
- Kevin Coyner
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Xenial | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing_2.0.3+dfsg1-1.dsc | 2.3 KiB | 25782c319cb8f68ca9cca726541dd02c78cbeda3be5e72a011d98cb68cfe8e03 |
pyparsing_2.0.3+dfsg1.orig.tar.gz | 1.3 MiB | 79dacc5cec938d38012e8e99c16f562856cba83c5515f5b80d5b4366afd3efbe |
pyparsing_2.0.3+dfsg1-1.debian.tar.xz | 6.1 KiB | b6b184787e161eab2545932ede2d5e863efcb28c60cd1610e086b2c8795c6791 |
Available diffs
- diff from 2.0.2+dfsg1-1 to 2.0.3+dfsg1-1 (3.2 KiB)
No changes file available.
Binary packages built by this source
- python-pyparsing: 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-doc: Python parsing module, documentation package
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: Python parsing module, Python3 package
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 the Python3 version of python-pyparsing.