foxclient 1.0.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.
- foxclient/__init__.py +54 -0
- foxclient/api/__init__.py +7 -0
- foxclient/api/device_api.py +1310 -0
- foxclient/api/release_api.py +1516 -0
- foxclient/api/stats_api.py +287 -0
- foxclient/api_client.py +798 -0
- foxclient/api_response.py +21 -0
- foxclient/configuration.py +591 -0
- foxclient/exceptions.py +217 -0
- foxclient/models/__init__.py +35 -0
- foxclient/models/device_response.py +130 -0
- foxclient/models/global_stats_aggregation_model.py +94 -0
- foxclient/models/http_validation_error.py +96 -0
- foxclient/models/list_response_release_response.py +100 -0
- foxclient/models/list_response_short_device_response.py +100 -0
- foxclient/models/list_response_short_release_response.py +100 -0
- foxclient/models/list_response_str.py +92 -0
- foxclient/models/maintainer_short_model.py +94 -0
- foxclient/models/recovery_img_response.py +90 -0
- foxclient/models/release_groups_response.py +105 -0
- foxclient/models/release_response.py +154 -0
- foxclient/models/release_type.py +39 -0
- foxclient/models/releases_sort.py +38 -0
- foxclient/models/response_get_releases_releases_get.py +135 -0
- foxclient/models/short_device_response.py +110 -0
- foxclient/models/short_release_response.py +124 -0
- foxclient/models/validation_error.py +100 -0
- foxclient/models/validation_error_loc_inner.py +139 -0
- foxclient/py.typed +0 -0
- foxclient/rest.py +259 -0
- foxclient-1.0.0.dist-info/METADATA +23 -0
- foxclient-1.0.0.dist-info/RECORD +34 -0
- foxclient-1.0.0.dist-info/WHEEL +5 -0
- foxclient-1.0.0.dist-info/top_level.txt +1 -0
foxclient/__init__.py
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Fox API
|
|
7
|
+
|
|
8
|
+
Warning: Please add a custom 'X-FoxAPI-App=MyAppName' header to your requests. This would help us fighting against DDoS attacks in future, while keeping your application's access to the API. In future, this may be a mandatory requirement. To reduce the system load, the API endpoints are rate limited. The default limit is 20 requests per minute. Contact admin@orangefox.tech if you need a higher limit. The requests may be logged for analytics and development purposes.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 5.1.1
|
|
11
|
+
Contact: admin@orangefox.tech
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "1.0.0"
|
|
19
|
+
|
|
20
|
+
# import apis into sdk package
|
|
21
|
+
from foxclient.api.device_api import DeviceApi
|
|
22
|
+
from foxclient.api.release_api import ReleaseApi
|
|
23
|
+
from foxclient.api.stats_api import StatsApi
|
|
24
|
+
|
|
25
|
+
# import ApiClient
|
|
26
|
+
from foxclient.api_response import ApiResponse
|
|
27
|
+
from foxclient.api_client import ApiClient
|
|
28
|
+
from foxclient.configuration import Configuration
|
|
29
|
+
from foxclient.exceptions import OpenApiException
|
|
30
|
+
from foxclient.exceptions import ApiTypeError
|
|
31
|
+
from foxclient.exceptions import ApiValueError
|
|
32
|
+
from foxclient.exceptions import ApiKeyError
|
|
33
|
+
from foxclient.exceptions import ApiAttributeError
|
|
34
|
+
from foxclient.exceptions import ApiException
|
|
35
|
+
|
|
36
|
+
# import models into sdk package
|
|
37
|
+
from foxclient.models.device_response import DeviceResponse
|
|
38
|
+
from foxclient.models.global_stats_aggregation_model import GlobalStatsAggregationModel
|
|
39
|
+
from foxclient.models.http_validation_error import HTTPValidationError
|
|
40
|
+
from foxclient.models.list_response_release_response import ListResponseReleaseResponse
|
|
41
|
+
from foxclient.models.list_response_short_device_response import ListResponseShortDeviceResponse
|
|
42
|
+
from foxclient.models.list_response_short_release_response import ListResponseShortReleaseResponse
|
|
43
|
+
from foxclient.models.list_response_str import ListResponseStr
|
|
44
|
+
from foxclient.models.maintainer_short_model import MaintainerShortModel
|
|
45
|
+
from foxclient.models.recovery_img_response import RecoveryImgResponse
|
|
46
|
+
from foxclient.models.release_groups_response import ReleaseGroupsResponse
|
|
47
|
+
from foxclient.models.release_response import ReleaseResponse
|
|
48
|
+
from foxclient.models.release_type import ReleaseType
|
|
49
|
+
from foxclient.models.releases_sort import ReleasesSort
|
|
50
|
+
from foxclient.models.response_get_releases_releases_get import ResponseGetReleasesReleasesGet
|
|
51
|
+
from foxclient.models.short_device_response import ShortDeviceResponse
|
|
52
|
+
from foxclient.models.short_release_response import ShortReleaseResponse
|
|
53
|
+
from foxclient.models.validation_error import ValidationError
|
|
54
|
+
from foxclient.models.validation_error_loc_inner import ValidationErrorLocInner
|