File: control

package info (click to toggle)
typedload 2.22-1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 676 kB
  • sloc: python: 2,597; makefile: 138
file content (53 lines) | stat: -rw-r--r-- 1,925 bytes parent folder | download
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Source: typedload
Section: python
Priority: optional
Maintainer: Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it>
Build-Depends:
 debhelper (>= 13),
 python3-all:any,
 dh-python,
 python3-setuptools,
 python3-attr,
 debhelper-compat (= 13),
 jdupes
Standards-Version: 4.6.1.0
Homepage: https://ltworf.github.io/typedload/
Vcs-Browser: https://github.com/ltworf/typedload
Rules-Requires-Root: no

Package: python3-typedload
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Suggests: python3-typedload-doc
Description: Load and dump json-like data into typed data structures in Python3
 This module provides an API to load dictionaries and lists (usually loaded
 from json) into Python's NamedTuples, dataclass, sets, enums, and various
 other typed data structures; respecting all the type-hints and performing
 type checks or casts when needed.
 .
 It can also dump from typed data structures to json-like dictionaries and
 lists.
 .
 It is very useful for projects that use Mypy and deal with untyped data like
 json, because it guarantees that the data will follow the desired schema.

Package: python3-typedload-doc
Architecture: all
Section: doc
Recommends: python3-typedload
Replaces: python3-typedload (<< 2.15-3)
Breaks: python3-typedload (<< 2.15-3)
Depends: ${mkdocs:Depends}, ${misc:Depends}
Description: Documentation and examples for python3-typedload
 This module provides an API to load dictionaries and lists (usually loaded
 from json) into Python's NamedTuples, dataclass, sets, enums, and various
 other typed data structures; respecting all the type-hints and performing
 type checks or casts when needed.
 .
 It can also dump from typed data structures to json-like dictionaries and
 lists.
 .
 It is very useful for projects that use Mypy and deal with untyped data like
 json, because it guarantees that the data will follow the desired schema.
 .
 This is the documentation for the module.