dts-dance 0.1.5__py3-none-any.whl → 0.1.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dts-dance
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: dts dance lib
5
5
  Keywords: observation,tools
6
6
  Requires-Python: >=3.12
@@ -1,5 +1,5 @@
1
1
  dtsdance/__init__.py,sha256=Yl_jEZ5weYfcrklnDvwB4wSgCOvMBLRRgWx0gHs3qfM,49
2
- dtsdance/bytecloud.py,sha256=_1CCzzSaWGwTxrdyXCYGa-c_EcJnYtwmaeGcafjLP-M,4684
2
+ dtsdance/bytecloud.py,sha256=8YxIYETTSOf5ulCao2sawtdvuFBgMN3pASObChOyIKQ,4804
3
3
  dtsdance/dflow.py,sha256=Ri2DFkitwwmnAUHUDseGfZIqFoTFbszqJ3jHX_CxRRc,3500
4
4
  dtsdance/dsyncer.py,sha256=1OateZLGekYP_EF9_oAHqsj4sdQm6ahIoRllEgT9Y3I,11142
5
5
  dtsdance/feishu_base.py,sha256=2j4ZM4PFqJ-9EhC6DQ1OmAg--3VBGZyyRuxyjL0j6OU,3733
@@ -7,6 +7,6 @@ dtsdance/feishu_table.py,sha256=ZUeoKrM4nmm5hFhc3vWOVYeLP390orm-284Od92G4iQ,8424
7
7
  dtsdance/metrics_fe.py,sha256=uPdbjGaaYBOv-rK7lKUx6aVT5Sj6ZkW9m06NyqMrPf0,18990
8
8
  dtsdance/s3.py,sha256=EMY5uDnqRUuHnZQBkquLdQjLR5I51LuCpCPNsDz0Z0w,1340
9
9
  dtsdance/spacex.py,sha256=wgbuwDTLXopJnLn2puX-9MfeVXvi_nQ3C9uN8McoJf4,2113
10
- dts_dance-0.1.5.dist-info/METADATA,sha256=0PzqOGQYVgT3OFxcLnUqB5a5FdTUkn1R6VUyCBFrVJM,706
11
- dts_dance-0.1.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
12
- dts_dance-0.1.5.dist-info/RECORD,,
10
+ dts_dance-0.1.6.dist-info/METADATA,sha256=aYKlBsMhnjrHeAnAevc3yjilOtgPRAPYVfq5boinCNY,706
11
+ dts_dance-0.1.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
12
+ dts_dance-0.1.6.dist-info/RECORD,,
dtsdance/bytecloud.py CHANGED
@@ -99,10 +99,11 @@ class ByteCloudHelper:
99
99
  try:
100
100
  # 发送 GET 请求
101
101
  response = requests.get(url, headers=headers, timeout=60)
102
+ # logger.debug(f"获取JWT令牌响应: response.text={response.text}")
102
103
 
103
104
  # 检查响应状态码
104
105
  if response.status_code != 200:
105
- raise Exception(f"获取JWT令牌失败: 状态码 {response.status_code}")
106
+ raise Exception(f"获取JWT令牌失败。status_code: {response.status_code}, response.text: {response.text}")
106
107
 
107
108
  # 解析响应体
108
109
  response_json = response.json()