Metadata-Version: 2.1
Name: authress
Version: 3.1.100
Summary: Authress SDK for authorization as a service and interact with the Authress API.
Home-page: https://github.com/Authress/authress-sdk.py.git
Author: Authress Developers
Author-email: developers@authress.io
License: Apache-2.0
Keywords: Authorization as a service,Security,authorization,authorization as a service,authentication,user authentication,Authress,Authress client,access management,access management as a service,user security,oso,polar,open source policy engine,embedded authorization,batteries included authorization,verified,verified access,verified permissions
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3<=2.2.2,>=1.25.3
Requires-Dist: python-dateutil
Requires-Dist: pydantic<3,>=1.10.5
Requires-Dist: PyJWT>=2.4.0
Requires-Dist: cryptography>=2.9.2
Requires-Dist: aenum
Requires-Dist: certifi>=14.05.14
Requires-Dist: python_dateutil>=2.5.3

<p id="main" align="center">
  <img src="https://authress.io/static/images/linkedin-banner.png" alt="Authress media banner">
</p>

# Authress SDK for Python

This is the Authress SDK for Python. Authress provides an authorization API for user identity, access control, and api key management as a drop in SaaS.

The Nuget package connects to the [Authress API](https://authress.io/app/#/api). You can use Authress to build authentication and authorization directly into your applications and services. Additionally, Authress can be used locally to develop faster without needing an [Authress Account](https://authress.io).

<p align="center">
    <a href="https://badge.fury.io/py/authress" alt="Authress pypi package"><img src="https://badge.fury.io/py/authress.svg"></a>
    <a href="https://github.com/Authress/authress-sdk.py/actions/workflows/build.yml" alt="Build status"><img src="https://github.com/Authress/authress-sdk.py/actions/workflows/build.yml/badge.svg"></a>
    <a href="https://github.com/Authress/authress-sdk.py/blob/main/LICENSE" alt="Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a>
    <a href="https://authress.io/community" alt="authress community"><img src="https://img.shields.io/badge/Community-Authress-fbaf0b.svg"></a>
</p>

## Usage

```sh
pip install authress
```
(you may need to run `pip` with root permission: `sudo pip install authress`)

Then import the package:
```python
import authress
```

## Getting Started


### Reference Guide

See the SDK reference guide for a examples of commonly executed blocks with descriptions.

[SDK Documentation](https://github.com/Authress/authress-sdk.py/blob/main/docs/README.md)


## Quick Examples:

* [Authorize using a user token](https://github.com/Authress/authress-sdk.py/blob/main/docs/EXAMPLES.md#authorize-using-a-user-token)
* [Authorize with a service client](https://github.com/Authress/authress-sdk.py/blob/main/docs/EXAMPLES.md#authorize-with-a-service-client)
* [Using the Authress service client as an API key](https://github.com/Authress/authress-sdk.py/blob/main/docs/EXAMPLES.md#using-the-authress-service-client-as-an-api-key)
* [Embedding service clients into your api](https://github.com/Authress/authress-sdk.py/blob/main/docs/EXAMPLES.md#generation-of-service-client)
* [Token verification](https://github.com/Authress/authress-sdk.py/blob/main/docs/EXAMPLES.md#token-verifier)

## Contribution Guide

[Developing for the Python SDK](https://github.com/Authress/authress-sdk.py/blob/main/contributing.md)
