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 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
+ ]
@@ -0,0 +1 @@
1
+ from .moq import * # NOQA