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.
Files changed (34) hide show
  1. foxclient/__init__.py +54 -0
  2. foxclient/api/__init__.py +7 -0
  3. foxclient/api/device_api.py +1310 -0
  4. foxclient/api/release_api.py +1516 -0
  5. foxclient/api/stats_api.py +287 -0
  6. foxclient/api_client.py +798 -0
  7. foxclient/api_response.py +21 -0
  8. foxclient/configuration.py +591 -0
  9. foxclient/exceptions.py +217 -0
  10. foxclient/models/__init__.py +35 -0
  11. foxclient/models/device_response.py +130 -0
  12. foxclient/models/global_stats_aggregation_model.py +94 -0
  13. foxclient/models/http_validation_error.py +96 -0
  14. foxclient/models/list_response_release_response.py +100 -0
  15. foxclient/models/list_response_short_device_response.py +100 -0
  16. foxclient/models/list_response_short_release_response.py +100 -0
  17. foxclient/models/list_response_str.py +92 -0
  18. foxclient/models/maintainer_short_model.py +94 -0
  19. foxclient/models/recovery_img_response.py +90 -0
  20. foxclient/models/release_groups_response.py +105 -0
  21. foxclient/models/release_response.py +154 -0
  22. foxclient/models/release_type.py +39 -0
  23. foxclient/models/releases_sort.py +38 -0
  24. foxclient/models/response_get_releases_releases_get.py +135 -0
  25. foxclient/models/short_device_response.py +110 -0
  26. foxclient/models/short_release_response.py +124 -0
  27. foxclient/models/validation_error.py +100 -0
  28. foxclient/models/validation_error_loc_inner.py +139 -0
  29. foxclient/py.typed +0 -0
  30. foxclient/rest.py +259 -0
  31. foxclient-1.0.0.dist-info/METADATA +23 -0
  32. foxclient-1.0.0.dist-info/RECORD +34 -0
  33. foxclient-1.0.0.dist-info/WHEEL +5 -0
  34. 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
@@ -0,0 +1,7 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from foxclient.api.device_api import DeviceApi
5
+ from foxclient.api.release_api import ReleaseApi
6
+ from foxclient.api.stats_api import StatsApi
7
+