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
|
Source: python-box
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Michal Arbet <michal.arbet@ultimum.io>,
Build-Depends:
cython3,
debhelper-compat (= 13),
dh-python,
pybuild-plugin-pyproject,
python3-all-dev,
python3-msgpack,
python3-pytest <!nocheck>,
python3-ruamel.yaml,
python3-setuptools,
python3-tomli-w,
python3-yaml,
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-box
Vcs-Git: https://salsa.debian.org/python-team/packages/python-box.git
Homepage: https://github.com/cdgriffith/Box
Rules-Requires-Root: no
Package: python3-box
Architecture: any
Depends:
python3-yaml,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: Python dictionaries with advanced dot notation access
Box is designed to be an easy drop in transparently replacements
for dictionaries, thanks to Python's duck typing capabilities, which
adds dot notation access. Any sub dictionaries or ones set after
initiation will be automatically converted to a Box object.
You can always run .to_dict() on it to return the object and all
sub objects back into a regular dictionary.
|