Installation and Setup
Fiddler offers a Python SDK client that lets you connect directly to your Fiddler environment from a Jupyter Notebook or automated pipeline.
Install the Fiddler Client
The client is available for download from PyPI via pip:
Import the Fiddler Client
Once you've installed the client, you can import the fiddler
package into any Python script:
Authorize the Client
To use the Fiddler client, you will need authorization details that contain
The URL you are connecting to
An authorization token for your user
Find your URL
The URL should point to wherever Fiddler has been deployed for your organization.
If using Fiddlerβs managed cloud service, it should be of the form
Find your authorization token
To find your authorization token, navigate to the Settings page, click the Credentials tab and then use the Create Key button (if there is not already a authorization token for your user).
null
Connect the Client to Fiddler
Once you've located the URL of your Fiddler environment and your authorization token, you can connect the Fiddler client to your environment.
π Info
For detailed documentation on the Fiddler python clientβs many features, check out the API reference section.
βͺ Questions? Join our community Slack to talk to a product expert
Set log level
Set the log level for verbose information.
Last updated