File: control

package info (click to toggle)
python-banal 1.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 116 kB
  • sloc: python: 215; makefile: 17
file content (32 lines) | stat: -rw-r--r-- 1,240 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
Source: python-banal
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Edward Betts <edward@4angle.com>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               python3-all,
               python3-setuptools
Rules-Requires-Root: no
Standards-Version: 4.6.1
Homepage: https://github.com/pudo/banal
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-banal
Vcs-Git: https://salsa.debian.org/python-team/packages/python-banal.git

Package: python3-banal
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Commons of banal micro-functions for Python
 Commons of Python micro-functions. This basically an out-sourced, shared
 utils module with a focus on functions that buffer type uncertainties in
 Python (e.g. "is this a list?").
 .
 Functions:
 .
  * is_listish: check if something is list-ish
  * is_mapping: check if an object is dict-ish
  * ensure_list: make sure an argument is a list, or make it into a
    single-element list
  * clean_dict: remove null values from a dict, recursively
  * decode_path: decode a path name to be unicode
  * hash_data: generate a SHA1 from a dict of reasonable objects