Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docstrings to SeamMultiWorkspace #135

Merged
merged 3 commits into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 59 additions & 11 deletions seam/seam_multi_workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,21 @@ def create(self, **kwargs):

class SeamMultiWorkspace(AbstractSeamMultiWorkspace):
"""
Seam class used to interact with Seam API without being scoped to any specific workspace.
Seam class used to interact with Seam API without being scoped to a specific workspace.

This class provides methods to authenticate and interact with Seam API endpoints
that can operate without being tied to a specific workspace. It supports operations such as creating and listing workspaces.

:cvar lts_version: The long-term support (LTS) version of the Seam
Python SDK
:vartype lts_version: str
:ivar wait_for_action_attempt: Controls whether to wait for an action
attempt to complete
:vartype wait_for_action_attempt: Union[bool, Dict[str, float]]
:ivar client: The HTTP client used for making API requests
:vartype client: SeamHttpClient
:ivar workspaces: Proxy to access workspace-related operations
:vartype workspaces: WorkspacesProxy
"""

lts_version: str = LTS_VERSION
Expand All @@ -40,16 +54,25 @@ def __init__(
retries: Optional[Retry] = None,
):
"""
Parameters
----------
personal_access_token : str, optional
Personal access token.
endpoint : str, optional
The API endpoint to which the request should be sent.
wait_for_action_attempt : bool or dict, optional
Controls whether to wait for an action attempt to complete, either as a boolean or as a dictionary specifying `timeout` and `poll_interval`. Defaults to `False`.
retries : urllib3.util.Retry, optional
Configuration for retry behavior on failed requests.
Initialize a SeamMultiWorkspace client instance.

This method sets up the SeamMultiWorkspace client with the provided personal access token
and configuration options.

:param personal_access_token: A personal access token for
authenticating with Seam
:type personal_access_token: str
:param endpoint: The custom API endpoint URL. If not provided,
the default Seam API endpoint will be used
:type endpoint: Optional[str]
:param wait_for_action_attempt: Controls whether to wait for an
action attempt to complete. Can be a boolean or a dictionary with
'timeout' and 'poll_interval' keys
:type wait_for_action_attempt: Optional[Union[bool, Dict[str, float]]]
:param retries: Configuration for retry behavior on failed requests
:type retries: Optional[urllib3.util.Retry]

:raises SeamInvalidTokenError: If the provided personal access token format is invalid
"""

self.lts_version = SeamMultiWorkspace.lts_version
Expand Down Expand Up @@ -79,6 +102,31 @@ def from_personal_access_token(
wait_for_action_attempt: Optional[Union[bool, Dict[str, float]]] = True,
retries: Optional[Retry] = None,
) -> Self:
"""
Create a SeamMultiWorkspace instance using a personal access token.

This class method is a convenience constructor for creating a SeamMultiWorkspace instance
authenticated with a personal access token.

:param personal_access_token: The personal access token for authenticating with Seam
:type personal_access_token: str
:param endpoint: The custom API endpoint URL. If not provided, the default Seam API endpoint will be used
:type endpoint: Optional[str]
:param wait_for_action_attempt: Controls whether to wait for an
action attempt to complete. Can be a boolean or a dictionary with
'timeout' and 'poll_interval' keys
:type wait_for_action_attempt: Optional[Union[bool, Dict[str, float]]]
:param retries: Configuration for retry behavior on failed requests
:type retries: Optional[urllib3.util.Retry]
:return: A new instance of the SeamMultiWorkspace class
authenticated with the provided personal access token
:rtype: Self

:Example:

>>> seam = SeamMultiWorkspace.from_personal_access_token("your-personal-access-token-here")
"""

return cls(
personal_access_token=personal_access_token,
endpoint=endpoint,
Expand Down