clarity-api-sdk-python 0.1.4__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.
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/PKG-INFO +1 -1
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/pyproject.toml +1 -1
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/src/clarity_api_sdk_python.egg-info/PKG-INFO +1 -1
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/src/clarity_api_sdk_python.egg-info/SOURCES.txt +4 -4
- clarity_api_sdk_python-0.1.6/src/clarity_api_sdk_python.egg-info/top_level.txt +1 -0
- {clarity_api_sdk_python-0.1.4/src → clarity_api_sdk_python-0.1.6/src/cti}/api/client.py +1 -1
- clarity_api_sdk_python-0.1.4/src/clarity_api_sdk_python.egg-info/top_level.txt +0 -2
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/README.md +0 -0
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/setup.cfg +0 -0
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/src/clarity_api_sdk_python.egg-info/dependency_links.txt +0 -0
- {clarity_api_sdk_python-0.1.4 → clarity_api_sdk_python-0.1.6}/src/clarity_api_sdk_python.egg-info/requires.txt +0 -0
- {clarity_api_sdk_python-0.1.4/src → clarity_api_sdk_python-0.1.6/src/cti}/api/__init__.py +0 -0
- {clarity_api_sdk_python-0.1.4/src → clarity_api_sdk_python-0.1.6/src/cti}/logger/__init__.py +0 -0
- {clarity_api_sdk_python-0.1.4/src → clarity_api_sdk_python-0.1.6/src/cti}/logger/logger.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clarity-api-sdk-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: A Python SDK to connect to the CTI Clarity API server.
|
|
5
5
|
Author-email: "Chesapeake Technology Inc." <support@chesapeaketech.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/chesapeake-tech/clarity-api-sdk-python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clarity-api-sdk-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: A Python SDK to connect to the CTI Clarity API server.
|
|
5
5
|
Author-email: "Chesapeake Technology Inc." <support@chesapeaketech.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/chesapeake-tech/clarity-api-sdk-python
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
README.md
|
|
2
2
|
pyproject.toml
|
|
3
|
-
src/api/__init__.py
|
|
4
|
-
src/api/client.py
|
|
5
3
|
src/clarity_api_sdk_python.egg-info/PKG-INFO
|
|
6
4
|
src/clarity_api_sdk_python.egg-info/SOURCES.txt
|
|
7
5
|
src/clarity_api_sdk_python.egg-info/dependency_links.txt
|
|
8
6
|
src/clarity_api_sdk_python.egg-info/requires.txt
|
|
9
7
|
src/clarity_api_sdk_python.egg-info/top_level.txt
|
|
10
|
-
src/
|
|
11
|
-
src/
|
|
8
|
+
src/cti/api/__init__.py
|
|
9
|
+
src/cti/api/client.py
|
|
10
|
+
src/cti/logger/__init__.py
|
|
11
|
+
src/cti/logger/logger.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cti
|
|
@@ -7,7 +7,7 @@ from httpx import Client, HTTPStatusError, RequestError, Response, URL
|
|
|
7
7
|
from httpx_auth import OAuth2ClientCredentials, OAuth2, TokenMemoryCache
|
|
8
8
|
from httpx_retries import Retry, RetryTransport
|
|
9
9
|
|
|
10
|
-
from logger import get_logger
|
|
10
|
+
from cti.logger import get_logger
|
|
11
11
|
|
|
12
12
|
logger = get_logger(__name__)
|
|
13
13
|
OAuth2.token_cache = TokenMemoryCache()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{clarity_api_sdk_python-0.1.4/src → clarity_api_sdk_python-0.1.6/src/cti}/logger/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|