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
|
Source: python-itemadapter
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Andrey Rakhmatullin <wrar@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-sequence-python3,
pybuild-plugin-pyproject,
python3-all,
python3-attr <!nocheck>,
python3-hatchling,
python3-pydantic (>= 2.0~) <!nocheck>,
python3-pytest <!nocheck>,
python3-scrapy <!nocheck>,
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-itemadapter
Vcs-Git: https://salsa.debian.org/python-team/packages/python-itemadapter.git
Homepage: https://github.com/scrapy/itemadapter
Testsuite: autopkgtest-pkg-pybuild
Package: python3-itemadapter
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Common interface for data container classes
The ItemAdapter class is a wrapper for data container objects, providing a
common interface to handle objects of different types in an uniform manner,
regardless of their underlying implementation.
.
Currently supported types are:
* dict
* scrapy.item.Item
* dataclass-based classes
* attrs-based classes
|