File: control

package info (click to toggle)
python-iterable-io 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: python: 228; makefile: 4
file content (30 lines) | stat: -rw-r--r-- 1,104 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
Source: python-iterable-io
Section: python
Priority: optional
Maintainer: Sascha Steinbiss <satta@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-python,
               python3-all,
               python3-setuptools,
               python3-pytest
Standards-Version: 4.7.0
Testsuite: autopkgtest-pkg-pybuild
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/debian/python-iterable-io.git
Vcs-Browser: https://salsa.debian.org/debian/python-iterable-io
Homepage: https://github.com/pR0Ps/iterable-io

Package: python3-iterable-io
Architecture: all
Depends: ${python3:Depends},
         ${misc:Depends},
         ${lib:Depends}
Description: Python library to adapt iterables to a file-like interface
 iterable-io is a small Python library that provides an adapter so
 that it's possible to read from iterable objects in the same way as
 file-like objects.
 .
 It is primarily useful as "glue" between two incompatible interfaces.
 As an example, in the case where one interface expects a file-like
 object to call .read() on, and the other only provides a generator of
 bytes.