File: control

package info (click to toggle)
aiohttp-sse 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 200 kB
  • sloc: python: 917; makefile: 35; sh: 5
file content (39 lines) | stat: -rw-r--r-- 1,543 bytes parent folder | download | duplicates (2)
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
Source: aiohttp-sse
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,
 pybuild-plugin-pyproject,
 python3-all,
 python3-setuptools,
Build-Depends-Indep:
 python3-aiohttp <!nocheck>,
 python3-pytest <!nocheck>,
 python3-pytest-aiohttp <!nocheck>,
 python3-pytest-asyncio <!nocheck>,
 python3-pytest-cov <!nocheck>,
Rules-Requires-Root: no
Standards-Version: 4.7.1
Homepage: https://github.com/aio-libs/aiohttp_sse
Vcs-Browser: https://salsa.debian.org/homeassistant-team/deps/aiohttp-sse
Vcs-Git: https://salsa.debian.org/homeassistant-team/deps/aiohttp-sse.git

Package: python3-aiohttp-sse
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: Server-sent events support for streaming data over HTTP
 This library offers support for server-sent events (SSE), enabling the
 streaming of data from a server to clients over HTTP. Maintaining an open
 connection between the client and server, it allows the continuous flow of
 real-time updates in the text/event-stream format. This is particularly useful
 for applications requiring real-time notifications, such as live news feeds,
 chat applications, or real-time dashboards, where maintaining a persistent
 connection is critical for functionality. The library can interact with
 client-side EventSource interfaces to deliver these continuous updates,
 ensuring they are sent as server events occur.