athena-intelligence 0.1.95__py3-none-any.whl → 0.1.97__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.
@@ -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.95",
20
+ "X-Fern-SDK-Version": "0.1.97",
21
21
  }
22
22
  headers["X-API-KEY"] = self.api_key
23
23
  return headers
athena/environment.py CHANGED
@@ -5,3 +5,4 @@ import enum
5
5
 
6
6
  class AthenaEnvironment(enum.Enum):
7
7
  PRODUCTION = "https://api.athenaintel.com"
8
+ STAGING = "https://staging-api.athenaintel.com"
@@ -15,9 +15,9 @@ class DataFrameRequestOut(pydantic_v1.BaseModel):
15
15
  Response model with JSON dataframe representation.
16
16
  """
17
17
 
18
- columns: typing.List[DataFrameRequestOutColumnsItem]
19
- data: typing.List[typing.List[DataFrameRequestOutDataItemItem]]
20
- index: typing.List[DataFrameRequestOutIndexItem]
18
+ columns: typing.List[typing.Optional[DataFrameRequestOutColumnsItem]]
19
+ data: typing.List[typing.List[typing.Optional[DataFrameRequestOutDataItemItem]]]
20
+ index: typing.List[typing.Optional[DataFrameRequestOutIndexItem]]
21
21
 
22
22
  def json(self, **kwargs: typing.Any) -> str:
23
23
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.95
3
+ Version: 0.1.97
4
4
  Summary: Athena Intelligence Python Library
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -3,7 +3,7 @@ athena/base_client.py,sha256=KS-PX4GHtkn89PP3IHPcSX54TfyBsFeOSuDn05p9YLc,5238
3
3
  athena/client.py,sha256=SKZjcEFf_-NThIm8WuPUCsBVSlmWPVnVsXEsvJfWK_I,9415
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=UPff8A8yuhnh05jPpibiw4L3_v4Fw6MOLAHAKxiH5Ss,1805
6
+ athena/core/client_wrapper.py,sha256=b0YB1ZDJDrlVfgJYtv2GSSAr2W45zckwUivMOpSVjPU,1805
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
@@ -12,7 +12,7 @@ athena/core/pydantic_utilities.py,sha256=hI3vcpSG47sVlafyPol2T2ICt8HNMIu_rM9amc2
12
12
  athena/core/query_encoder.py,sha256=sI6XiwFby-WRIk4MVN_5wlAlm30aCHE73Uvm09fb9qQ,1266
13
13
  athena/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
14
14
  athena/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
15
- athena/environment.py,sha256=qTOfpg8B5EGqwcJFB4ANkLFn2Y6rsPWGuhU8GRPlFl0,162
15
+ athena/environment.py,sha256=_e7YwByXALEk7fNJNJvjF81caYTbsx4c7wwftCJHQ7g,214
16
16
  athena/errors/__init__.py,sha256=0LicWKR1fNQwwL8_ohKhBkxXTD8StFlBYDFG1jPgqOk,405
17
17
  athena/errors/internal_server_error.py,sha256=WEwVqzsfpBTaqZipvse-kvKbW-3NbpXVvuHXs_64U0M,315
18
18
  athena/errors/not_found_error.py,sha256=uBK3JapPPgTkMoSCX9j22C6MDtSuTuSPmjT0lDRigpA,287
@@ -25,7 +25,7 @@ athena/tools/types/__init__.py,sha256=cA-ZQm6veQAP3_vKu9KkZpISsQqgTBN_Z--FGY1c2i
25
25
  athena/tools/types/tools_data_frame_request_columns_item.py,sha256=4rve98HoxzGpDhfEcNwqkH1mUQQXL8vAnX4T04PTTLk,138
26
26
  athena/types/__init__.py,sha256=ZGBn5o7_zVgGVt67H1Ukh8wDknD5M0J0afgZUwggv5s,1022
27
27
  athena/types/data_frame_parsing_error.py,sha256=lECOObzDIziXpsr8fokECZmYYRG_GBtAwA6bwChMwrE,1145
28
- athena/types/data_frame_request_out.py,sha256=cm3QgumqJ2bx2sJ2IVedkXPQ97qTu2835MoK0m1UKTg,1594
28
+ athena/types/data_frame_request_out.py,sha256=Od205PAKQL_Eq14GChRx-DIEPe00aIJBOuO89TwaQbQ,1645
29
29
  athena/types/data_frame_request_out_columns_item.py,sha256=9cjzciFv6C8n8Griytt_q_8ovkzHViS5tvUcMDfkfKE,143
30
30
  athena/types/data_frame_request_out_data_item_item.py,sha256=KMTJRr-1bdKDNMbUericCliwRoPHLGRV-n2bJtxdRW0,144
31
31
  athena/types/data_frame_request_out_index_item.py,sha256=bW7oe912trpkYKodj-I_AiTXXy61yWzliekcsUZkZE0,141
@@ -35,6 +35,6 @@ athena/types/http_validation_error.py,sha256=ZuVHc-T6RFEo7_qBO8DWHa2jGJ6O--tUIZy
35
35
  athena/types/validation_error.py,sha256=zub9I6bl192KHCE8RA0pEkdaEODR3ktTFnZ7E1B7Eco,1235
36
36
  athena/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
37
37
  athena/version.py,sha256=8aYAOJtVLaJLpRp6mTiEIhnl8gXA7yE0aDtZ-3mKQ4k,87
38
- athena_intelligence-0.1.95.dist-info/METADATA,sha256=TuP2Tv8YY434Zc-KVJAMdSKCe4iPAAFDQ0L2Ylyx1yI,5273
39
- athena_intelligence-0.1.95.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
40
- athena_intelligence-0.1.95.dist-info/RECORD,,
38
+ athena_intelligence-0.1.97.dist-info/METADATA,sha256=9jQxVyfn2sDiZHtrArUDe3Cb_zONUx0dvctOqqAiU64,5273
39
+ athena_intelligence-0.1.97.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
40
+ athena_intelligence-0.1.97.dist-info/RECORD,,