pyparsing 3.3.2-ok1 source package in openKylin
Changelog
pyparsing (3.3.2-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Tue, 02 Jun 2026 20:43:42 +0800
pyparsing (3.3.2-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Tue, 02 Jun 2026 20:43:42 +0800
| Series | Published | Component | Section | |
|---|---|---|---|---|
| Huanghe V3.0 | proposed | main | python |
| File | Size | SHA-256 Checksum |
|---|---|---|
| pyparsing_3.3.2.orig.tar.gz | 6.5 MiB | c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc |
| pyparsing_3.3.2-ok1.debian.tar.xz | 3.8 KiB | 4cdedc59529a6483264afe5bdc4be8422471c49bfd3f28bd7e90d813ab789db6 |
| pyparsing_3.3.2-ok1.dsc | 2.1 KiB | 9bdef771090b3018993b43873614c4450abf577a94f053d7d96c2eb807ca1215 |
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.parseStri
.
This package contains documentation for python-pyparsing.
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.parseStri