dagster-dingtalk 0.1.28__py3-none-any.whl → 0.1.29__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.
dagster_dingtalk/app_client.py
CHANGED
@@ -72,12 +72,11 @@ class DingTalkClient:
|
|
72
72
|
return {}
|
73
73
|
|
74
74
|
def __file_cache_write(self):
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
logging.error(f"AccessToken 缓存写入失败: {e}")
|
75
|
+
try:
|
76
|
+
with open(self.__access_token_file_cache, 'wb') as f:
|
77
|
+
f.write(pickle.dumps(self.__access_token_cache))
|
78
|
+
except Exception as e:
|
79
|
+
logging.error(f"AccessToken 缓存写入失败: {e}")
|
81
80
|
|
82
81
|
def __get_access_token(self) -> str:
|
83
82
|
with self.__token_lock:
|
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: dagster-dingtalk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.29
|
4
4
|
Summary: A dagster plugin for the DingTalk
|
5
5
|
Author-email: YiZixuan <sqkkyzx@qq.com>
|
6
6
|
Requires-Python: >=3.11
|
7
|
-
Requires-Dist: dagster
|
7
|
+
Requires-Dist: dagster==1.10.0
|
8
8
|
Requires-Dist: httpx
|
9
9
|
Requires-Dist: pydantic
|
10
10
|
Description-Content-Type: text/markdown
|
@@ -1,9 +1,9 @@
|
|
1
1
|
dagster_dingtalk/__init__.py,sha256=Qw145M6Igl-NXuFUS-SHpKxyqvVboQAksXvhBnv0wBM,425
|
2
|
-
dagster_dingtalk/app_client.py,sha256=
|
2
|
+
dagster_dingtalk/app_client.py,sha256=9vO7PukQ4hCrHXxIUKkQNC9vNGgioldhFxQ_Tv3IM44,35954
|
3
3
|
dagster_dingtalk/operations.py,sha256=yH_rXJpWc8rwzkiJqjqHKy5iIED0Xi3qbSOv6SVr-eA,3923
|
4
4
|
dagster_dingtalk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
dagster_dingtalk/resources.py,sha256=RtoK-lbHKknzYDRq1bredLMxHm0GhycJ1IxQ7hjgLBw,17868
|
6
6
|
dagster_dingtalk/version.py,sha256=7jeKY88H3WyDN-Lrs5HYlAPbc4flvLTYlLgkgnZOy-g,26
|
7
|
-
dagster_dingtalk-0.1.
|
8
|
-
dagster_dingtalk-0.1.
|
9
|
-
dagster_dingtalk-0.1.
|
7
|
+
dagster_dingtalk-0.1.29.dist-info/METADATA,sha256=s2RxK-Tmqp-8rrupBI74xxR70dhOkqWFf9Svqcz-M6I,7758
|
8
|
+
dagster_dingtalk-0.1.29.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
9
|
+
dagster_dingtalk-0.1.29.dist-info/RECORD,,
|
File without changes
|