1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Source: python-ijson
Maintainer: Tomasz Buchert <tomasz@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper (>= 11),
debhelper-compat (= 12),
dh-python,
python,
python-setuptools,
python3,
python3-setuptools
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/debian/python-ijson
Vcs-Git: https://salsa.debian.org/debian/python-ijson.git
Homepage: https://github.com/isagalaev/ijson
Package: python-ijson
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
Suggests: libyajl2
Description: event-driven JSON parser (Python 2 version)
Ijson is an iterative, event-driven JSON parser with a standard
Python iterator interface. The principle is similar to Java SAX
parser: the user can parse a document on-line, without storing the
whole object in memory.
.
This package installs the library for Python 2.
Package: python3-ijson
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
Suggests: libyajl2
Description: event-driven JSON parser (Python 3 version)
Ijson is an iterative, event-driven JSON parser with a standard
Python iterator interface. The principle is similar to Java SAX
parser: the user can parse a document on-line, without storing the
whole object in memory.
.
This package installs the library for Python 3.
|