|
1 | | -# coding: utf-8 |
| 1 | +""" A client library for accessing Jellyfish Media Server """ |
| 2 | +from .client import AuthenticatedClient, Client |
2 | 3 |
|
3 | | -# flake8: noqa |
4 | | - |
5 | | -""" |
6 | | - Python API wrapper for Jellyfish Media Server |
7 | | -
|
8 | | - The version of the OpenAPI document: 0.2.0 |
9 | | - Generated by OpenAPI Generator (https://openapi-generator.tech) |
10 | | -
|
11 | | - Do not edit the class manually. |
12 | | -""" # noqa: E501 |
13 | | - |
14 | | - |
15 | | -__version__ = "1.0.0" |
16 | | - |
17 | | -# import apis into sdk package |
18 | | -from jellyfish._openapi_client.api.hls_api import HlsApi |
19 | | -from jellyfish._openapi_client.api.recording_api import RecordingApi |
20 | | -from jellyfish._openapi_client.api.room_api import RoomApi |
21 | | - |
22 | | -# import ApiClient |
23 | | -from jellyfish._openapi_client.api_response import ApiResponse |
24 | | -from jellyfish._openapi_client.api_client import ApiClient |
25 | | -from jellyfish._openapi_client.configuration import Configuration |
26 | | -from jellyfish._openapi_client.exceptions import OpenApiException |
27 | | -from jellyfish._openapi_client.exceptions import ApiTypeError |
28 | | -from jellyfish._openapi_client.exceptions import ApiValueError |
29 | | -from jellyfish._openapi_client.exceptions import ApiKeyError |
30 | | -from jellyfish._openapi_client.exceptions import ApiAttributeError |
31 | | -from jellyfish._openapi_client.exceptions import ApiException |
32 | | - |
33 | | -# import models into sdk package |
34 | | -from jellyfish._openapi_client.models.add_component_request import AddComponentRequest |
35 | | -from jellyfish._openapi_client.models.add_peer_request import AddPeerRequest |
36 | | -from jellyfish._openapi_client.models.component import Component |
37 | | -from jellyfish._openapi_client.models.component_details_response import ( |
38 | | - ComponentDetailsResponse, |
39 | | -) |
40 | | -from jellyfish._openapi_client.models.component_hls import ComponentHLS |
41 | | -from jellyfish._openapi_client.models.component_metadata_hls import ComponentMetadataHLS |
42 | | -from jellyfish._openapi_client.models.component_options import ComponentOptions |
43 | | -from jellyfish._openapi_client.models.component_options_hls import ComponentOptionsHLS |
44 | | -from jellyfish._openapi_client.models.component_options_hlss3 import ( |
45 | | - ComponentOptionsHLSS3, |
46 | | -) |
47 | | -from jellyfish._openapi_client.models.component_options_rtsp import ComponentOptionsRTSP |
48 | | -from jellyfish._openapi_client.models.component_rtsp import ComponentRTSP |
49 | | -from jellyfish._openapi_client.models.error import Error |
50 | | -from jellyfish._openapi_client.models.hls_skip import HlsSkip |
51 | | -from jellyfish._openapi_client.models.peer import Peer |
52 | | -from jellyfish._openapi_client.models.peer_details_response import PeerDetailsResponse |
53 | | -from jellyfish._openapi_client.models.peer_details_response_data import ( |
54 | | - PeerDetailsResponseData, |
55 | | -) |
56 | | -from jellyfish._openapi_client.models.peer_options import PeerOptions |
57 | | -from jellyfish._openapi_client.models.peer_options_web_rtc import PeerOptionsWebRTC |
58 | | -from jellyfish._openapi_client.models.peer_status import PeerStatus |
59 | | -from jellyfish._openapi_client.models.recording_list_response import ( |
60 | | - RecordingListResponse, |
61 | | -) |
62 | | -from jellyfish._openapi_client.models.room import Room |
63 | | -from jellyfish._openapi_client.models.room_config import RoomConfig |
64 | | -from jellyfish._openapi_client.models.room_create_details_response import ( |
65 | | - RoomCreateDetailsResponse, |
66 | | -) |
67 | | -from jellyfish._openapi_client.models.room_create_details_response_data import ( |
68 | | - RoomCreateDetailsResponseData, |
| 4 | +__all__ = ( |
| 5 | + "AuthenticatedClient", |
| 6 | + "Client", |
69 | 7 | ) |
70 | | -from jellyfish._openapi_client.models.room_details_response import RoomDetailsResponse |
71 | | -from jellyfish._openapi_client.models.rooms_listing_response import RoomsListingResponse |
72 | | -from jellyfish._openapi_client.models.s3_credentials import S3Credentials |
73 | | -from jellyfish._openapi_client.models.subscription_config import SubscriptionConfig |
0 commit comments