reminix.client.Project

class reminix.client.Project[source]

Bases: object

Operations for project.

__init__(client)[source]

Initialize Project operations.

Parameters:

client (Client) – The Reminix client instance

Return type:

None

Methods

__init__(client)

Initialize Project operations.

get()

Get current project.

__init__(client)[source]

Initialize Project operations.

Parameters:

client (Client) – The Reminix client instance

Return type:

None

async get()[source]

Get current project.

Returns the project associated with the API key used for authentication.

The project contains metadata about your organization’s configuration, including: - Project ID and organization ID - Project name and slug - Creation and update timestamps

This endpoint is useful for verifying your API key is valid and retrieving project details.

Returns:

Project found

Return type:

Project

Example:

result = await client.project.get()
print(result)
Raises:
Return type:

Project