athena-intelligence 0.1.1__tar.gz → 0.1.2__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.
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/PKG-INFO +4 -4
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/README.md +3 -3
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/pyproject.toml +1 -1
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/client_wrapper.py +1 -1
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/__init__.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/client.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/__init__.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/api_error.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/datetime_utils.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/file.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/jsonable_encoder.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/remove_none_from_dict.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/request_options.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/environment.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/py.typed +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/resources/__init__.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/resources/message/__init__.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/resources/message/client.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/resources/message/types/__init__.py +0 -0
- {athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/resources/message/types/message.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: athena-intelligence
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary:
|
5
5
|
Requires-Python: >=3.8,<4.0
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
@@ -16,7 +16,7 @@ Description-Content-Type: text/markdown
|
|
16
16
|
# Athena Intelligence Python Library
|
17
17
|
|
18
18
|
[](https://github.com/fern-api/fern)
|
19
|
-
[](https://pypi.python.org/pypi/athena-intellligence)
|
20
20
|
|
21
21
|
The Athena Intelligence Python Library provides convenient access to the Athena Intelligence API from
|
22
22
|
applications written in Python.
|
@@ -29,9 +29,9 @@ request and response fields, and offers both synchronous and asynchronous client
|
|
29
29
|
Add this dependency to your project's build file:
|
30
30
|
|
31
31
|
```bash
|
32
|
-
pip install athena-
|
32
|
+
pip install athena-intelligence
|
33
33
|
# or
|
34
|
-
poetry add athena-
|
34
|
+
poetry add athena-intelligence
|
35
35
|
```
|
36
36
|
|
37
37
|
## Usage
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Athena Intelligence Python Library
|
2
2
|
|
3
3
|
[](https://github.com/fern-api/fern)
|
4
|
-
[](https://pypi.python.org/pypi/athena-intellligence)
|
5
5
|
|
6
6
|
The Athena Intelligence Python Library provides convenient access to the Athena Intelligence API from
|
7
7
|
applications written in Python.
|
@@ -14,9 +14,9 @@ request and response fields, and offers both synchronous and asynchronous client
|
|
14
14
|
Add this dependency to your project's build file:
|
15
15
|
|
16
16
|
```bash
|
17
|
-
pip install athena-
|
17
|
+
pip install athena-intelligence
|
18
18
|
# or
|
19
|
-
poetry add athena-
|
19
|
+
poetry add athena-intelligence
|
20
20
|
```
|
21
21
|
|
22
22
|
## Usage
|
@@ -14,7 +14,7 @@ class BaseClientWrapper:
|
|
14
14
|
headers: typing.Dict[str, str] = {
|
15
15
|
"X-Fern-Language": "Python",
|
16
16
|
"X-Fern-SDK-Name": "athena-intelligence",
|
17
|
-
"X-Fern-SDK-Version": "0.1.
|
17
|
+
"X-Fern-SDK-Version": "0.1.2",
|
18
18
|
}
|
19
19
|
headers["Authorization"] = f"Bearer {self._get_api_key()}"
|
20
20
|
return headers
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/core/remove_none_from_dict.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/resources/message/__init__.py
RENAMED
File without changes
|
{athena_intelligence-0.1.1 → athena_intelligence-0.1.2}/src/athena/resources/message/client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|