deb_control_files:
- control
- md5sums
- postinst
- prerm
deb_fields:
Architecture: all
Breaks: python3-translate (<< 3.6.0~), translate-toolkit (<< 3.6.0~)
Depends: python3:any
Description: |-
alternative to creating and executing simple grammars - Python 3.x
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 Python 3.x version of python-pyparsing.
Homepage: https://github.com/pyparsing/pyparsing/
Installed-Size: '453'
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Multi-Arch: foreign
Package: python3-pyparsing
Priority: optional
Section: python
Source: pyparsing
Suggests: python-pyparsing-doc
Version: 3.0.9-1
srcpkg_name: pyparsing
srcpkg_version: 3.0.9-1