tarang 4.4.0__py3-none-any.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.
@@ -0,0 +1,19 @@
1
+ """Tarang API Client - Thin client for backend communication."""
2
+
3
+ from tarang.client.api_client import (
4
+ TarangAPIClient,
5
+ TarangStreamingClient,
6
+ TarangResponse,
7
+ StreamingEvent,
8
+ LocalContext,
9
+ )
10
+ from tarang.client.auth import TarangAuth
11
+
12
+ __all__ = [
13
+ "TarangAPIClient",
14
+ "TarangStreamingClient",
15
+ "TarangResponse",
16
+ "StreamingEvent",
17
+ "LocalContext",
18
+ "TarangAuth",
19
+ ]