File: control

package info (click to toggle)
python-iterable-io 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 100 kB
  • sloc: python: 236; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 1,071 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
Source: python-iterable-io
Section: python
Maintainer: Sascha Steinbiss <satta@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               python3-all,
               python3-setuptools,
               python3-pytest
Standards-Version: 4.7.3
Testsuite: autopkgtest-pkg-pybuild
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.