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

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Huanghe V3.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main python

Downloads

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

Available diffs

View changes file

Binary packages built by this source

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: 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))