11Client Interface
22================
33
4- .. currentmodule :: athena_client .client
4+ .. currentmodule :: resolver_athena_client .client
55
66The client module provides the main interface for interacting with Athena
77services, including the primary client class and authentication helpers.
@@ -19,7 +19,7 @@ Example:
1919 ... print (result.outputs)
2020
2121
22- .. currentmodule :: athena_client .client.athena_client
22+ .. currentmodule :: resolver_athena_client .client.athena_client
2323
2424.. autoclass :: AthenaClient
2525 :members:
@@ -30,7 +30,7 @@ Example:
3030Channel Management
3131------------------
3232
33- .. currentmodule :: athena_client .client.channel
33+ .. currentmodule :: resolver_athena_client .client.channel
3434
3535.. autofunction :: create_channel_with_credentials
3636
@@ -55,14 +55,14 @@ Channel Management
5555Deployment Selection
5656--------------------
5757
58- .. currentmodule :: athena_client .client.deployment_selector
58+ .. currentmodule :: resolver_athena_client .client.deployment_selector
5959
6060See :doc: `deployment_selector ` for deployment discovery and selection functionality.
6161
6262Correlation and Tracing
6363-----------------------
6464
65- .. currentmodule :: athena_client .client.correlation
65+ .. currentmodule :: resolver_athena_client .client.correlation
6666
6767.. autoclass :: CorrelationProvider
6868 :members:
@@ -87,7 +87,7 @@ Correlation and Tracing
8787Utility Functions
8888-----------------
8989
90- .. currentmodule :: athena_client .client.utils
90+ .. currentmodule :: resolver_athena_client .client.utils
9191
9292.. autofunction :: process_classification_outputs
9393
@@ -109,7 +109,7 @@ Utility Functions
109109Constants
110110---------
111111
112- .. currentmodule :: athena_client .client.consts
112+ .. currentmodule :: resolver_athena_client .client.consts
113113
114114Common constants used throughout the client library.
115115
@@ -127,9 +127,9 @@ Basic Classification
127127.. code-block :: python
128128
129129 import asyncio
130- from athena_client .client.athena_client import AthenaClient
131- from athena_client .client.athena_options import AthenaOptions
132- from athena_client .client.channel import create_channel
130+ from resolver_athena_client .client.athena_client import AthenaClient
131+ from resolver_athena_client .client.athena_options import AthenaOptions
132+ from resolver_athena_client .client.channel import create_channel
133133
134134 async def main ():
135135 # Create channel with static token
@@ -167,9 +167,9 @@ OAuth Authentication
167167
168168 import asyncio
169169 import os
170- from athena_client .client.athena_client import AthenaClient
171- from athena_client .client.athena_options import AthenaOptions
172- from athena_client .client.channel import (
170+ from resolver_athena_client .client.athena_client import AthenaClient
171+ from resolver_athena_client .client.athena_options import AthenaOptions
172+ from resolver_athena_client .client.channel import (
173173 CredentialHelper,
174174 create_channel_with_credentials
175175 )
@@ -205,12 +205,12 @@ Error Handling
205205
206206.. code-block :: python
207207
208- from athena_client .client.exceptions import (
208+ from resolver_athena_client .client.exceptions import (
209209 AthenaClientError,
210210 AuthenticationError,
211211 ConnectionError
212212 )
213- from athena_client .client.utils import (
213+ from resolver_athena_client .client.utils import (
214214 process_classification_outputs,
215215 has_output_errors
216216 )
0 commit comments