UncountablePythonSDK 0.0.60__py3-none-any.whl → 0.0.62__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.

Potentially problematic release.


This version of UncountablePythonSDK might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: UncountablePythonSDK
3
- Version: 0.0.60
3
+ Version: 0.0.62
4
4
  Summary: Uncountable SDK
5
5
  Project-URL: Homepage, https://github.com/uncountableinc/uncountable-python-sdk
6
6
  Project-URL: Repository, https://github.com/uncountableinc/uncountable-python-sdk.git
@@ -34,6 +34,7 @@ Requires-Dist: opentelemetry-sdk ==1.*
34
34
  Requires-Dist: paramiko ==3.*
35
35
  Requires-Dist: boto3 ==1.*
36
36
  Requires-Dist: flask ==3.*
37
+ Requires-Dist: simplejson ==3.*
37
38
  Provides-Extra: test
38
39
  Requires-Dist: mypy ==1.* ; extra == 'test'
39
40
  Requires-Dist: ruff ==0.* ; extra == 'test'
@@ -74,7 +74,7 @@ uncountable/__init__.py,sha256=8l8XWNCKsu7TG94c-xa2KHpDegvxDC2FyQISdWC763Y,89
74
74
  uncountable/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
75
  uncountable/core/__init__.py,sha256=RFv0kO6rKFf1PtBPu83hCGmxqkJamRtsgQ9_-ztw7tA,341
76
76
  uncountable/core/async_batch.py,sha256=Gur0VOS0AH2ugwvk65hwoX-iqwQAAyJaejY_LyAZZPo,1210
77
- uncountable/core/client.py,sha256=UaeQx8Tdif2BMIKO5FOHdpaCr6ySGmEplXSDT9wQls8,10626
77
+ uncountable/core/client.py,sha256=KUJN3XcbawMg_GuJ5DvmDsmhRzsnafCjyq27vOD4jC4,10640
78
78
  uncountable/core/environment.py,sha256=4rLWeUIDYB6w1iqrAiSEaD_OqMoo_ed3xcjz5jM4HGU,572
79
79
  uncountable/core/file_upload.py,sha256=qR7BBBWVxFNrb1_WICreo3dkZygE9lcE1fmZCQrDZU0,3469
80
80
  uncountable/core/types.py,sha256=s2CjqYJpsmbC7xMwxxT7kJ_V9bwokrjjWVVjpMcQpKI,333
@@ -247,7 +247,7 @@ uncountable/types/api/triggers/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr
247
247
  uncountable/types/api/triggers/run_trigger.py,sha256=_Rpha9nxXI3Xr17CrGDtofg4HZ81x2lt0rMZ6As0qfE,893
248
248
  uncountable/types/api/uploader/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
249
249
  uncountable/types/api/uploader/invoke_uploader.py,sha256=Rc77y5q-3R9-SNQgm8P35zKaW2D1Hbtm7PDixnOn1G0,1025
250
- UncountablePythonSDK-0.0.60.dist-info/METADATA,sha256=bKGoizXKBfPpFqoKEjCvCBGjvN49fQf77Gn7pP25u0o,1961
251
- UncountablePythonSDK-0.0.60.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
252
- UncountablePythonSDK-0.0.60.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
253
- UncountablePythonSDK-0.0.60.dist-info/RECORD,,
250
+ UncountablePythonSDK-0.0.62.dist-info/METADATA,sha256=1FbyEwn0ijwdznl3f3wpIYDBc0Ie0uTn2oXcH_zk6zM,1993
251
+ UncountablePythonSDK-0.0.62.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
252
+ UncountablePythonSDK-0.0.62.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
253
+ UncountablePythonSDK-0.0.62.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  import base64
2
- import json
3
2
  import typing
4
3
  from dataclasses import dataclass
5
4
  from datetime import datetime, timedelta
@@ -8,6 +7,7 @@ from urllib.parse import urljoin
8
7
  from uuid import uuid4
9
8
 
10
9
  import requests
10
+ import simplejson as json
11
11
  from opentelemetry.sdk.resources import Attributes
12
12
  from requests.exceptions import JSONDecodeError
13
13