About Client 3.x

The Fiddler Client contains many useful methods for sending and receiving data to and from the Fiddler platform.

Fiddler provides a Python Client that allows you to connect to Fiddler directly from a Python notebook or automated pipeline.

Each client function is documented with a description, usage information, and code examples.

Initialization

The Client object is used to communicate with Fiddler.

Import Fiddler

To import fiddler client, we can use the below method:

import fiddler as fdl
from fiddler import Model, Project

Authenticate and Connect

In order to use the client, you'll need to provide authentication details as shown below.

Usage params

Return params

None

Usage

fdl.init(
  url: str,
  token: str,
  proxies: dict[str, Any],
  timeout: int,
  verify: bool,
  validate: bool
)
fdl.init(
  url="https://xyz.fiddler.ai",
  token="abc"
)

Raises

📘 Info

To maximize compatibility, please ensure that your Client Version matches the server version for your Fiddler instance.

When you connect to Fiddler using the code on the right, you'll receive a notification if there is a version mismatch between the client and server.

You can install a specific version of fiddler-client using pip: pip install fiddler-client==X.X.X

Last updated

© 2024 Fiddler AI