File: control

package info (click to toggle)
file-read-backwards 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248 kB
  • sloc: python: 714; makefile: 145
file content (34 lines) | stat: -rw-r--r-- 1,324 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
Source: file-read-backwards
Maintainer: Home Assistant Team <team+homeassistant@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,
Build-Depends-Indep:
 python3-pytest <!nocheck>,
 python3-pytest-mock <!nocheck>,
Rules-Requires-Root: no
Standards-Version: 4.7.2
Homepage: https://github.com/RobinNil/file_read_backwards
Vcs-Browser: https://salsa.debian.org/homeassistant-team/deps/file-read-backwards
Vcs-Git: https://salsa.debian.org/homeassistant-team/deps/file-read-backwards.git
Testsuite: autopkgtest-pkg-pybuild

Package: python3-file-read-backwards
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: Memory efficient way of reading files line-by-line from the end of file
 A library designed to read files backward line by line. It supports multiple
 encodings such as ascii, latin-1, and utf-8, and handles various newline
 characters including '\r', '\r\n', and '\n'. Suitable for processing large
 files without consuming a lot of memory, it reads lines as unicode, ensuring
 compatibility with most text files. Additionally, it provides functionality
 for both incremental line reading and reading lines one at a time through its
 API.