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
|
Source: python-django-jsonfield
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Raphaƫl Hertzog <hertzog@debian.org>, Brian May <bam@debian.org>
Standards-Version: 4.5.0
Build-Depends:
debhelper-compat (= 12),
dh-python,
python3-all,
python3-django,
python3-psycopg2,
python3-setuptools,
python3-six
Vcs-Git: https://salsa.debian.org/python-team/modules/python-django-jsonfield.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-django-jsonfield
Homepage: https://github.com/adamchainz/django-jsonfield
Package: python3-django-jsonfield
Architecture: all
Depends: python3-django (>= 1.3), ${misc:Depends}, ${python3:Depends}
Description: JSON field for Django models (Python 3)
This package provides a Django field (jsonfield.JSONField) that you can use to
store arbitrary JSON structures in a simple text field at the database level.
.
Accessing the field returns a decoded object (list, dict, string).
.
In forms, it appears like a TextField but the input is validated to be valid
JSON.
.
This is the Python 3 version of the package.
|