Socket
Book a DemoInstallSign in
Socket

sauceclient

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sauceclient

Python client library for Sauce Labs API

pipPyPI
Version
1.0.1
Maintainers
1

sauceclient

Python client library for Sauce Labs API

  • Copyright (c) 2013-2025 Corey Goldberg
  • Development: GitHub
  • Releases: PyPI
  • Docs: Read the Docs
  • License: Apache 2.0

About sauceclient

sauceclient is a Python client library for the Sauce Labs API. You can manage a test environment and retrieve test assets from Sauce Labs.

The API gives remote access to:

  • Test Jobs & Assets (Results, Logs, Videos, Screenshots)
  • Account
  • Platform Information
  • JavaScript Unit Tests
  • Temporary Storage
  • Tunnels

Note: sauceclient is not used for running tests on Sauce Labs' services. Test execution is handled by your testing tool or library (Selenium, Playwright, Cypress, Appium, etc).

About Sauce Labs

Sauce Labs is a cloud-based service for running remote browser-based tests. It has VM's with 800+ browser/OS combinations, allowing comprehensive cross-browser cross-platform test coverage.

Installation

pip install sauceclient

Example Usage

  • public access:
import sauceclient

sc = sauceclient.SauceClient()
status = sc.information.get_status()
  • with authorization:
import sauceclient

sc = sauceclient.SauceClient(
    "sauce-username",
    "sauce-access-key",
)
jobs = sc.jobs.get_jobs(full=True, limit=5)

Keywords

API

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts