Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

saucebindings

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

saucebindings

Sauce Labs Python bindings library

  • 1.3.0
  • PyPI
  • Socket score

Maintainers
3

Sauce Labs Python Bindings

Hello, welcome to the Sauce Python bindings! Let's make using Sauce Labs Simple!

Example Usage

The goal of the Sauce bindings is to provide a straightforward approach to connecting your automated scripts to Sauce. Here's an example. The Sauce Python bindings can be used like this:

from saucebindings.session import SauceSession

session = SauceSession()

driver = session.driver
driver.get("www.saucedemo.com")

session.stop(True)

Requirements

Set your Sauce username and Sauce access key as environment variables <https://pip.pypa.io/en/stable/>_.

Installation

Clone this project to build from source

git clone https://github.com/saucelabs/sauce_bindings

python setup.py install

or install from pip_

pip install saucebindings

Development

This project will be developed initially in Python 3.x so please create a virtual environment <https://pip.pypa.io/en/stable/>_:

python3 -m venv venv

source venv/bin/activate

To install dependencies, do the following:

pip install -r requirements.txt

Testing

To run all tests, run the following:

pytest

.. _pip: https://pip.pypa.io/en/stable/

Package and Release

python setup.py sdist
twine check dist/*
twine upload dist/*

Keywords

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc