tobiko-cloud-api-client 202508.55.0__py3-none-any.whl → 202508.57.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {tobiko_cloud_api_client-202508.55.0.dist-info → tobiko_cloud_api_client-202508.57.0.dist-info}/METADATA +2 -2
- {tobiko_cloud_api_client-202508.55.0.dist-info → tobiko_cloud_api_client-202508.57.0.dist-info}/RECORD +6 -6
- tobikodata/http_client/auth.py +2 -2
- {tobiko_cloud_api_client-202508.55.0.dist-info → tobiko_cloud_api_client-202508.57.0.dist-info}/WHEEL +0 -0
- {tobiko_cloud_api_client-202508.55.0.dist-info → tobiko_cloud_api_client-202508.57.0.dist-info}/namespace_packages.txt +0 -0
- {tobiko_cloud_api_client-202508.55.0.dist-info → tobiko_cloud_api_client-202508.57.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tobiko-cloud-api-client
|
3
|
-
Version: 202508.
|
3
|
+
Version: 202508.57.0
|
4
4
|
Author: TobikoData Inc.
|
5
5
|
Author-email: engineering@tobikodata.com
|
6
6
|
Requires-Python: <3.13,>=3.9
|
@@ -10,4 +10,4 @@ Requires-Dist: pydantic>=2.0.0
|
|
10
10
|
Requires-Dist: rich[jupyter]
|
11
11
|
Requires-Dist: ruamel.yaml
|
12
12
|
Requires-Dist: tenacity
|
13
|
-
Requires-Dist: tobiko-cloud-helpers==202508.
|
13
|
+
Requires-Dist: tobiko-cloud-helpers==202508.57.0
|
@@ -1,14 +1,14 @@
|
|
1
1
|
tobikodata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
tobikodata/http_client/__init__.py,sha256=0vzfsVlDAfzAktEsvzRnsMYy3OpkzAeY6dQoe5tW6oA,457
|
3
3
|
tobikodata/http_client/api.py,sha256=J8W2IuKs7i7hbW3gWinWpCFnnPGwOszeUz3J3Bt41_o,8130
|
4
|
-
tobikodata/http_client/auth.py,sha256=
|
4
|
+
tobikodata/http_client/auth.py,sha256=XP6jYsK58fM-gvCFT66_1z-MFMcKcdZe9mAKRVBArrQ,7112
|
5
5
|
tobikodata/http_client/public.py,sha256=rs_E5RurQlKT-DfuqGX7W5rJQA2Q3MkeWS6hSC0bFbI,17554
|
6
6
|
tobikodata/http_client/api_models/v1/common.py,sha256=T79ytQywoyLAr157Hbiae3neCV52bm8Ny1i8S8nDzkE,418
|
7
7
|
tobikodata/http_client/api_models/v1/dags.py,sha256=np7OeHQ9Vhdo1JqOsD4el3OTUdz-P5L7vYJEGrp3k8U,893
|
8
8
|
tobikodata/http_client/api_models/v1/evaluations.py,sha256=Oa_BUxPt61jMpiz0JgUzpTvulU7yK08SC7AQjb3LqzY,1164
|
9
9
|
tobikodata/http_client/api_models/v1/runs.py,sha256=F2kGhwRTYxSYS5NSJfDSvyNM0y4NIVHL1ONgM3MnD7w,444
|
10
|
-
tobiko_cloud_api_client-202508.
|
11
|
-
tobiko_cloud_api_client-202508.
|
12
|
-
tobiko_cloud_api_client-202508.
|
13
|
-
tobiko_cloud_api_client-202508.
|
14
|
-
tobiko_cloud_api_client-202508.
|
10
|
+
tobiko_cloud_api_client-202508.57.0.dist-info/METADATA,sha256=vHzzv7lLzCTYzGBpVFq1OZ7FhB46uEh7TWAE3Jh_qF4,371
|
11
|
+
tobiko_cloud_api_client-202508.57.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
12
|
+
tobiko_cloud_api_client-202508.57.0.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
13
|
+
tobiko_cloud_api_client-202508.57.0.dist-info/top_level.txt,sha256=RtGY-jz-WpCF6_ox51-oVGzCMZ7v9RHTWLreUe86rUY,11
|
14
|
+
tobiko_cloud_api_client-202508.57.0.dist-info/RECORD,,
|
tobikodata/http_client/auth.py
CHANGED
@@ -68,7 +68,7 @@ class SSOAuth:
|
|
68
68
|
"""
|
69
69
|
auth_path = SSOAuth._auth_yaml_path()
|
70
70
|
|
71
|
-
if auth_path.exists():
|
71
|
+
if auth_path.exists() and os.access(auth_path, os.W_OK):
|
72
72
|
os.remove(auth_path)
|
73
73
|
|
74
74
|
@staticmethod
|
@@ -78,7 +78,7 @@ class SSOAuth:
|
|
78
78
|
"""
|
79
79
|
auth_path = SSOAuth._auth_yaml_path()
|
80
80
|
|
81
|
-
if auth_path.exists():
|
81
|
+
if auth_path.exists() and os.access(auth_path, os.R_OK):
|
82
82
|
with auth_path.open("r") as fd:
|
83
83
|
return yaml.load(fd.read())
|
84
84
|
|
File without changes
|
File without changes
|
File without changes
|