moq-rs 0.2.12__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moq/__init__.py +40 -0
- moq/_uniffi/__init__.py +1 -0
- moq/_uniffi/moq.py +5659 -0
- moq/_uniffi/moq_ffi.dll +0 -0
- moq/client.py +99 -0
- moq/origin.py +95 -0
- moq/publish.py +123 -0
- moq/py.typed +0 -0
- moq/server.py +227 -0
- moq/subscribe.py +151 -0
- moq/types.py +19 -0
- moq_rs-0.2.12.dist-info/METADATA +170 -0
- moq_rs-0.2.12.dist-info/RECORD +15 -0
- moq_rs-0.2.12.dist-info/WHEEL +4 -0
- moq_rs-0.2.12.dist-info/sboms/moq-ffi.cyclonedx.json +17572 -0
moq/__init__.py
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""The networking layer for Media over QUIC.
|
|
2
|
+
|
|
3
|
+
Real-time pub/sub with built-in caching, fan-out, and prioritization.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from ._uniffi import MoqSession as Session
|
|
7
|
+
from .client import Client
|
|
8
|
+
from .origin import Announced, AnnouncedBroadcast, Announcement, OriginConsumer, OriginProducer
|
|
9
|
+
from .publish import BroadcastProducer, GroupProducer, MediaProducer, TrackProducer
|
|
10
|
+
from .server import Request, Server, Transport
|
|
11
|
+
from .subscribe import BroadcastConsumer, CatalogConsumer, Container, GroupConsumer, MediaConsumer, TrackConsumer
|
|
12
|
+
from .types import Audio, Catalog, Dimensions, Frame, Video
|
|
13
|
+
|
|
14
|
+
__all__ = [
|
|
15
|
+
"Audio",
|
|
16
|
+
"Announced",
|
|
17
|
+
"AnnouncedBroadcast",
|
|
18
|
+
"Announcement",
|
|
19
|
+
"BroadcastConsumer",
|
|
20
|
+
"BroadcastProducer",
|
|
21
|
+
"Catalog",
|
|
22
|
+
"Container",
|
|
23
|
+
"CatalogConsumer",
|
|
24
|
+
"Client",
|
|
25
|
+
"Dimensions",
|
|
26
|
+
"Frame",
|
|
27
|
+
"GroupConsumer",
|
|
28
|
+
"GroupProducer",
|
|
29
|
+
"MediaConsumer",
|
|
30
|
+
"MediaProducer",
|
|
31
|
+
"OriginConsumer",
|
|
32
|
+
"OriginProducer",
|
|
33
|
+
"Request",
|
|
34
|
+
"Server",
|
|
35
|
+
"Session",
|
|
36
|
+
"TrackConsumer",
|
|
37
|
+
"TrackProducer",
|
|
38
|
+
"Transport",
|
|
39
|
+
"Video",
|
|
40
|
+
]
|
moq/_uniffi/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .moq import * # NOQA
|