integrations

module wandb.apis.public

W&B Public API for integrations.

This module provides classes for interacting with W&B integrations.

class Integrations

method Integrations.__init__

__init__(client: '_Client', variables: 'dict[str, Any]', per_page: 'int' = 50)

property Integrations.cursor

The start cursor to use for the next page.


property Integrations.more

Whether there are more Integrations to fetch.


method Integrations.convert_objects

convert_objects()  Iterable[Integration]

Parse the page data into a list of integrations.


class WebhookIntegrations

method WebhookIntegrations.__init__

__init__(client: '_Client', variables: 'dict[str, Any]', per_page: 'int' = 50)

property WebhookIntegrations.cursor

The start cursor to use for the next page.


property WebhookIntegrations.more

Whether there are more webhook integrations to fetch.


method WebhookIntegrations.convert_objects

convert_objects()  Iterable[WebhookIntegration]

Parse the page data into a list of webhook integrations.


class SlackIntegrations

method SlackIntegrations.__init__

__init__(client: '_Client', variables: 'dict[str, Any]', per_page: 'int' = 50)

property SlackIntegrations.cursor

The start cursor to use for the next page.


property SlackIntegrations.more

Whether there are more Slack integrations to fetch.


method SlackIntegrations.convert_objects

convert_objects()  Iterable[SlackIntegration]

Parse the page data into a list of Slack integrations.