itam-assistant 0.1.5__tar.gz → 0.1.6__tar.gz

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 (19) hide show
  1. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/PKG-INFO +2 -2
  2. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/do_ai.py +9 -4
  3. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant.egg-info/PKG-INFO +2 -2
  4. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/setup.py +2 -2
  5. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/README.md +0 -0
  6. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/__init__.py +0 -0
  7. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/ailyapp_client.py +0 -0
  8. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/config.py +0 -0
  9. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/intent_detail.py +0 -0
  10. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/lark_client.py +0 -0
  11. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/logger.py +0 -0
  12. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/openapi.py +0 -0
  13. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant/test.py +0 -0
  14. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant.egg-info/SOURCES.txt +0 -0
  15. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant.egg-info/dependency_links.txt +0 -0
  16. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant.egg-info/requires.txt +0 -0
  17. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/itam_assistant.egg-info/top_level.txt +0 -0
  18. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/setup.cfg +0 -0
  19. {itam_assistant-0.1.5 → itam_assistant-0.1.6}/test/test.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: itam_assistant
3
- Version: 0.1.5
4
- Summary: 优化版本
3
+ Version: 0.1.6
4
+ Summary: 优化版本--查询的数据列表
5
5
  Home-page: https://github.com/liujunmeiD/itam_assistant
6
6
  Author: liujunmeiD
7
7
  Author-email: 1105030421@qq.com
@@ -20,10 +20,7 @@ def do_ai_auto(Testk_data, clientinfo):
20
20
  """
21
21
  startAt = 0
22
22
  try:
23
- # 获取租户访问令牌
24
- tenant_access_token = AilyLarkClient(clientinfo).get_tenant_access_token()
25
- if not tenant_access_token:
26
- raise ValueError("未能获取到有效的租户访问令牌")
23
+
27
24
  # 判断Testsuitelink中是否包含https://
28
25
  if "https://" in Testk_data:
29
26
 
@@ -48,6 +45,10 @@ def do_ai_auto(Testk_data, clientinfo):
48
45
  test = json.loads(test)
49
46
  userinput = test['data']['value_ranges'][0]['values']
50
47
  print(f"表头为{userinput[0]}")
48
+ # 获取租户访问令牌
49
+ tenant_access_token = AilyLarkClient(clientinfo).get_tenant_access_token()
50
+ if not tenant_access_token:
51
+ raise ValueError("未能获取到有效的租户访问令牌")
51
52
  for i in range(1, row_count):
52
53
  if userinput[i][0]:
53
54
  if startAt == 0:
@@ -76,6 +77,10 @@ def do_ai_auto(Testk_data, clientinfo):
76
77
  elif Testk_data[0].get('ext'):
77
78
  num = 0
78
79
  for i in Testk_data:
80
+ # 获取租户访问令牌
81
+ tenant_access_token = AilyLarkClient(clientinfo).get_tenant_access_token()
82
+ if not tenant_access_token:
83
+ raise ValueError("未能获取到有效的租户访问令牌")
79
84
  aa = i['ext']['input']
80
85
  if startAt == 0:
81
86
  startAt = int(time.time())
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: itam-assistant
3
- Version: 0.1.5
4
- Summary: 优化版本
3
+ Version: 0.1.6
4
+ Summary: 优化版本--查询的数据列表
5
5
  Home-page: https://github.com/liujunmeiD/itam_assistant
6
6
  Author: liujunmeiD
7
7
  Author-email: 1105030421@qq.com
@@ -2,10 +2,10 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="itam_assistant", # 包名称
5
- version="0.1.5", # 版本号
5
+ version="0.1.6", # 版本号
6
6
  author="liujunmeiD",
7
7
  author_email="1105030421@qq.com",
8
- description="优化版本",
8
+ description="优化版本--查询的数据列表",
9
9
  long_description=open("README.md").read(),
10
10
  long_description_content_type="text/markdown",
11
11
  url="https://github.com/liujunmeiD/itam_assistant",
File without changes
File without changes