dagster-dingtalk 0.1.19__py3-none-any.whl → 0.1.20__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
dagster_dingtalk/app_client.py
CHANGED
@@ -5,7 +5,6 @@ from datetime import datetime
|
|
5
5
|
from enum import Enum
|
6
6
|
from pathlib import Path
|
7
7
|
from typing import List, Literal
|
8
|
-
import platform
|
9
8
|
|
10
9
|
import httpx
|
11
10
|
from httpx import Client
|
@@ -34,7 +33,7 @@ class DingTalkClient:
|
|
34
33
|
self.即时通信 = 即时通信_API(self)
|
35
34
|
|
36
35
|
def __get_access_token(self) -> str:
|
37
|
-
access_token_cache = Path.home() / ".
|
36
|
+
access_token_cache = Path.home() / ".dagster_dingtalk_cache"
|
38
37
|
all_access_token: dict = {}
|
39
38
|
access_token: str|None = None
|
40
39
|
expire_in: int = 0
|
@@ -211,6 +210,20 @@ class 通讯录管理_部门管理_API:
|
|
211
210
|
)
|
212
211
|
return response.json()
|
213
212
|
|
213
|
+
def 获取子部门ID列表(self, dept_id: int):
|
214
|
+
"""
|
215
|
+
调用本接口,获取下一级部门基础信息。
|
216
|
+
|
217
|
+
https://open.dingtalk.com/document/orgapp/obtain-a-sub-department-id-list-v2
|
218
|
+
|
219
|
+
:param dept_id: 部门 ID ,根部门 ID 为 1。
|
220
|
+
"""
|
221
|
+
response = self.__client.oapi.post(
|
222
|
+
url="/topapi/v2/department/listsubid",
|
223
|
+
json={"dept_id": dept_id}
|
224
|
+
)
|
225
|
+
return response.json()
|
226
|
+
|
214
227
|
# noinspection NonAsciiCharacters
|
215
228
|
class 文档文件_API:
|
216
229
|
def __init__(self, _client:DingTalkClient):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dagster-dingtalk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.20
|
4
4
|
Summary: A dagster plugin for the DingTalk
|
5
5
|
Author: YiZixuan
|
6
6
|
Author-email: sqkkyzx@qq.com
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
12
12
|
Requires-Dist: dagster (>=1.8.10)
|
13
13
|
Requires-Dist: httpx (>=0.27)
|
14
|
-
Requires-Dist: pydantic (>=2
|
14
|
+
Requires-Dist: pydantic (>=2.10)
|
15
15
|
Description-Content-Type: text/markdown
|
16
16
|
|
17
17
|
# 钉钉与 Dagster 集成
|
@@ -1,8 +1,8 @@
|
|
1
1
|
dagster_dingtalk/__init__.py,sha256=jAyn67nRx5wU0YYWDMRINn7Tt3joP5IXsztTtyMbxsE,424
|
2
|
-
dagster_dingtalk/app_client.py,sha256=
|
2
|
+
dagster_dingtalk/app_client.py,sha256=frLic_fEomF8TyY7SWXykwssdPnqgi_7lRkNL9m0V48,26484
|
3
3
|
dagster_dingtalk/operations.py,sha256=C1wwXCW7mpKhLC1-Y7TCP_72L9e93a9ceVHRWhNda-Q,3891
|
4
4
|
dagster_dingtalk/resources.py,sha256=1u8-oXRa7H_e0CAYkTJDxbjEmt3ZcD_ntBNvrS_rwr8,17430
|
5
5
|
dagster_dingtalk/version.py,sha256=ncWWGHPke5qy2-s8w3nAgDE4R__CZi-Q7CLWtmtkbvA,25
|
6
|
-
dagster_dingtalk-0.1.
|
7
|
-
dagster_dingtalk-0.1.
|
8
|
-
dagster_dingtalk-0.1.
|
6
|
+
dagster_dingtalk-0.1.20.dist-info/METADATA,sha256=P5KjHjrjrqrk1thH9EogS6cgbpYcerYx0EaVOz6Sr5c,7996
|
7
|
+
dagster_dingtalk-0.1.20.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
8
|
+
dagster_dingtalk-0.1.20.dist-info/RECORD,,
|
File without changes
|