athena-intelligence 0.1.112__py3-none-any.whl → 0.1.114__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.
athena/client.py CHANGED
@@ -1,3 +1,4 @@
1
+ import base64
1
2
  import dataclasses
2
3
  import enum
3
4
  import io
@@ -131,7 +132,7 @@ class WrappedToolsClient(ToolsClient):
131
132
  Parameters
132
133
  ----------
133
134
  asset_object : pd.DataFrame | pd.Series | core.File
134
- A pandas data frame, series, or core.File
135
+ A pandas data frame, series, matplotlib figure, or core.File
135
136
 
136
137
  parent_folder_id : typing.Optional[str]
137
138
  Identifier of the folder into which the asset should be saved
@@ -515,6 +516,10 @@ def _convert_asset_object(
515
516
  name: Union[str, None] = None,
516
517
  ) -> core.File:
517
518
  import pandas as pd
519
+ try:
520
+ from IPython.core.formatters import format_display_data # type: ignore[import]
521
+ except ImportError:
522
+ format_display_data = None
518
523
 
519
524
  if isinstance(asset_object, pd.Series):
520
525
  asset_object = asset_object.to_frame()
@@ -524,4 +529,20 @@ def _convert_asset_object(
524
529
  asset_object.to_parquet(path=None),
525
530
  "application/vnd.apache.parquet",
526
531
  )
532
+ if format_display_data:
533
+ data, _metadata = format_display_data(asset_object)
534
+ image_types = {
535
+ "image/png": "Plot",
536
+ "image/jpeg": "Image",
537
+ "image/gif": "Gif",
538
+ }
539
+ for media_type, label in image_types.items():
540
+ if media_type in data:
541
+ extension = media_type.split("/")[-1]
542
+ image_bytes = base64.b64decode(data[media_type])
543
+ return (
544
+ name or f"Untitled {label}.{extension}",
545
+ image_bytes,
546
+ media_type,
547
+ )
527
548
  return asset_object # type: ignore[return-value]
@@ -17,7 +17,7 @@ class BaseClientWrapper:
17
17
  headers: typing.Dict[str, str] = {
18
18
  "X-Fern-Language": "Python",
19
19
  "X-Fern-SDK-Name": "athena-intelligence",
20
- "X-Fern-SDK-Version": "0.1.112",
20
+ "X-Fern-SDK-Version": "0.1.114",
21
21
  }
22
22
  headers["X-API-KEY"] = self.api_key
23
23
  return headers
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.112
3
+ Version: 0.1.114
4
4
  Summary: Athena Intelligence Python Library
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -1,9 +1,9 @@
1
1
  athena/__init__.py,sha256=5ayB3YWH8AYc_ahG2b8ovLPX2u5xugauR2luprNXi0E,1484
2
2
  athena/base_client.py,sha256=TlP599mOBvj7Tk8IpFe5dgrDM98GJu3lEQh_zwl4vtA,5439
3
- athena/client.py,sha256=8CW7e_aBNkSnrMfMwbZx1BRpwp1MPONa0Uv97D-WY7w,18115
3
+ athena/client.py,sha256=2KT03Oi_7-qEgPY8D9r-Ek5KoyEfl0c-AT3PIMj-IPA,18905
4
4
  athena/core/__init__.py,sha256=UFXpYzcGxWQUucU1TkjOQ9mGWN3A5JohluOIWVYKU4I,973
5
5
  athena/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
6
- athena/core/client_wrapper.py,sha256=uzmbiYLp0guW6cRqRO65YdU1UiV6w4D1tssJFEvmbIM,1806
6
+ athena/core/client_wrapper.py,sha256=D5OjJciHKkoas1wU78BjbtSB60puDT6QZy8hpfiwqYA,1806
7
7
  athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
8
8
  athena/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
9
9
  athena/core/http_client.py,sha256=Z4NuAsJD-51yqmoME17O5sxwx5orSp1wsnd6bPyKcgA,17768
@@ -43,6 +43,6 @@ athena/types/file_too_large_error.py,sha256=AinkrcgR7lcTILAD8RX0x48P3GlSoAh1Oihx
43
43
  athena/types/parent_folder_error.py,sha256=ZMF-i3mZY6Mu1n5uQ60Q3mIIfehlWuXtgFUkSYspkx8,1120
44
44
  athena/types/save_asset_request_out.py,sha256=5bpBaUV3oeuL_hz4s07c-6MQHkn4cBsyxgT_SD5oi6I,1193
45
45
  athena/version.py,sha256=8aYAOJtVLaJLpRp6mTiEIhnl8gXA7yE0aDtZ-3mKQ4k,87
46
- athena_intelligence-0.1.112.dist-info/METADATA,sha256=wzsKc_psT7edVTZlvNOEvaB5sxdfXFElDOKpHs3-hmI,5274
47
- athena_intelligence-0.1.112.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
48
- athena_intelligence-0.1.112.dist-info/RECORD,,
46
+ athena_intelligence-0.1.114.dist-info/METADATA,sha256=b4O9CEbZ_R78QswvVNnsLCY51MdJ2JUOUSpstKCMxoo,5274
47
+ athena_intelligence-0.1.114.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
48
+ athena_intelligence-0.1.114.dist-info/RECORD,,