Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:
jobs:
analyze:
name: Check for Vulnerabilities
runs-on: ubuntu-22.04-2cpu-8ram-75ssd
runs-on: ubuntu-latest

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
needs: rl-scanner
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/'))
name: "PyPI"
runs-on: ubuntu-22.04-2cpu-8ram-75ssd
runs-on: ubuntu-latest
environment: release

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
jobs:
rl-scanner:
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/'))
runs-on: ubuntu-22.04-2cpu-8ram-75ssd
runs-on: ubuntu-latest
outputs:
scan-status: ${{ steps.rl-scan-conclusion.outcome }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sca_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: ["main"]
jobs:
snyk-cli:
uses: atko-security/devsecops-tooling/.github/workflows/sca-scan.yml@main
uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main
with:
additional-arguments: "--exclude=README.md,.jfrog --command=./venv/bin/python3"
python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:
jobs:
run:
name: Run
runs-on: ubuntu-22.04-2cpu-8ram-75ssd
runs-on: ubuntu-latest

strategy:
matrix:
Expand Down
60 changes: 25 additions & 35 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,37 @@
# Auth0 Teams SDK for Python
![Python SDK for Auth0 Teams](https://cdn.auth0.com/website/sdks/banners/teams-python-banner.png)

<div align="center">

[![pypi](https://img.shields.io/pypi/v/auth0-teams-python)](https://pypi.python.org/pypi/auth0-teams-python)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue)](https://github.com/auth0/teams-python/blob/HEAD/LICENSE)
[![License](https://img.shields.io/:license-Apache%202.0-blue.svg?style=flat)](https://github.com/auth0/teams-python/blob/HEAD/LICENSE)
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fauth0%2Fteams-python)

The Auth0 Teams SDK for Python provides convenient access to the Auth0 Teams API from Python.

## Table of Contents

- [Installation](#installation)
- [Reference](#reference)
- [Usage](#usage)
- [Async Client](#async-client)
- [Exception Handling](#exception-handling)
- [Pagination](#pagination)
- [Advanced](#advanced)
- [Access Raw Response Data](#access-raw-response-data)
- [Retries](#retries)
- [Timeouts](#timeouts)
- [Additional Headers](#additional-headers)
- [Logging](#logging)
- [Telemetry](#telemetry)
- [Custom Client](#custom-client)
- [Feedback](#feedback)
- [Contributing](#contributing)
- [Raise an issue](#raise-an-issue)
- [Vulnerability Reporting](#vulnerability-reporting)
- [What is Auth0?](#what-is-auth0)

## Installation
📚 [Documentation](#documentation) • 🚀 [Getting Started](#getting-started) • 💬 [Feedback](#feedback)

```sh
pip install auth0-teams-python
```
</div>

---

## Documentation

- [Docs Site](https://auth0.com/docs) - explore our docs site and learn more about Auth0
- [API Reference](https://github.com/auth0/teams-python/blob/HEAD/./reference.md) - full reference for this library

**Requirements:**
- Python ≥3.10
## Getting Started

## Reference
### Requirements

A full reference for this library is available [here](https://github.com/auth0/teams-python/blob/HEAD/./reference.md).
This library supports the following tooling versions:

- Python >= 3.10

### Installation

```sh
pip install auth0-teams-python
```

## Usage
### Configure the SDK

The client supports two authentication modes. With an existing token (a static string,
or a callable that returns one from your own auth flow):
Expand Down
Loading