terrakio-admin-api 0.3.8__py3-none-any.whl → 0.3.9__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.
Potentially problematic release.
This version of terrakio-admin-api might be problematic. Click here for more details.
- terrakio_admin_api/__init__.py +4 -4
- {terrakio_admin_api-0.3.8.dist-info → terrakio_admin_api-0.3.9.dist-info}/METADATA +3 -3
- terrakio_admin_api-0.3.9.dist-info/RECORD +5 -0
- terrakio_admin_api-0.3.8.dist-info/RECORD +0 -5
- {terrakio_admin_api-0.3.8.dist-info → terrakio_admin_api-0.3.9.dist-info}/WHEEL +0 -0
- {terrakio_admin_api-0.3.8.dist-info → terrakio_admin_api-0.3.9.dist-info}/top_level.txt +0 -0
terrakio_admin_api/__init__.py
CHANGED
|
@@ -5,10 +5,10 @@ Terrakio Admin API Client
|
|
|
5
5
|
An admin API client for Terrakio.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
__version__ = "0.3.
|
|
8
|
+
__version__ = "0.3.9"
|
|
9
9
|
|
|
10
10
|
from terrakio_core import AsyncClient as CoreAsyncClient
|
|
11
|
-
from terrakio_core import
|
|
11
|
+
from terrakio_core import Client as CoreClient
|
|
12
12
|
from terrakio_core.endpoints.group_management import AdminGroupManagement
|
|
13
13
|
|
|
14
14
|
class AsyncClient(CoreAsyncClient):
|
|
@@ -16,11 +16,11 @@ class AsyncClient(CoreAsyncClient):
|
|
|
16
16
|
super().__init__(*args, **kwargs)
|
|
17
17
|
self.groups = AdminGroupManagement(self)
|
|
18
18
|
|
|
19
|
-
class
|
|
19
|
+
class Client(CoreClient):
|
|
20
20
|
"""Synchronous version of the Terrakio Admin API client with full admin permissions."""
|
|
21
21
|
|
|
22
22
|
def __init__(self, *args, **kwargs):
|
|
23
23
|
super().__init__(*args, **kwargs)
|
|
24
24
|
self.groups = AdminGroupManagement(self)
|
|
25
25
|
|
|
26
|
-
__all__ = ['AsyncClient', '
|
|
26
|
+
__all__ = ['AsyncClient', 'Client']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: terrakio-admin-api
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: Admin API client for Terrakio services
|
|
5
5
|
Author-email: Yupeng Chao <yupeng@haizea.com.au>
|
|
6
6
|
Project-URL: Homepage, https://github.com/HaizeaAnalytics/terrakio-python-api
|
|
@@ -15,9 +15,9 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Classifier: Development Status :: 4 - Beta
|
|
16
16
|
Requires-Python: >3.11
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: terrakio-core==0.3.
|
|
18
|
+
Requires-Dist: terrakio-core==0.3.9
|
|
19
19
|
Provides-Extra: ml
|
|
20
|
-
Requires-Dist: terrakio-core[ml]==0.3.
|
|
20
|
+
Requires-Dist: terrakio-core[ml]==0.3.9; extra == "ml"
|
|
21
21
|
|
|
22
22
|
# Terrakio Admin API Client
|
|
23
23
|
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
terrakio_admin_api/__init__.py,sha256=Y9hFewSFZkbygnS8Oh2LvLIynrzngrRX1t0Mwv-Ue80,761
|
|
2
|
+
terrakio_admin_api-0.3.9.dist-info/METADATA,sha256=Z1JYtLEV0f-EOJt5O4IbtRAyB_QHivKD6V0ACQAh9wc,2205
|
|
3
|
+
terrakio_admin_api-0.3.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
+
terrakio_admin_api-0.3.9.dist-info/top_level.txt,sha256=748j-dWRk6ZzvitoF8KKmeRij-jNohN1ESi8ePDz0os,19
|
|
5
|
+
terrakio_admin_api-0.3.9.dist-info/RECORD,,
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
terrakio_admin_api/__init__.py,sha256=qe7has3oEuzBMAArHSk2nR-_unGbHIf69HgWIPAKVI4,781
|
|
2
|
-
terrakio_admin_api-0.3.8.dist-info/METADATA,sha256=OjMER_oWSohBg21xr-IHOaWC7aFCsqoD-OTYyCh7aec,2205
|
|
3
|
-
terrakio_admin_api-0.3.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
-
terrakio_admin_api-0.3.8.dist-info/top_level.txt,sha256=748j-dWRk6ZzvitoF8KKmeRij-jNohN1ESi8ePDz0os,19
|
|
5
|
-
terrakio_admin_api-0.3.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|