authress-sdk


Nameauthress-sdk JSON
Version 2.0.34 PyPI version JSON
download
home_pagehttps://github.com/Authress/authress-sdk.py.git
SummaryAuthress SDK for authorization as a service and interact with the Authress API.
upload_time2023-08-07 18:42:10
maintainer
docs_urlNone
authorRhosys Developers
requires_python
licenseApache-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
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<p align="center">
    <img src="https://github.com/Authress/authress-local/assets/5056218/156e3881-b359-4810-bc96-7abeaf9ddbdb" height="300px" 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/release/3.0/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/release/3.0/docs/README.md)


## Quick Examples:

* [Authorize using a user token](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/EXAMPLES.md#authorize-using-a-user-token)
* [Authorize with a service client](https://github.com/Authress/authress-sdk.py/blob/release/3.0/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/release/3.0/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/release/3.0/docs/EXAMPLES.md#generation-of-service-client)
* [Token verification](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/EXAMPLES.md#token-verifier)

## Contribution Guide

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Authress/authress-sdk.py.git",
    "name": "authress-sdk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "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",
    "author": "Rhosys Developers",
    "author_email": "developers@authress.io",
    "download_url": "https://files.pythonhosted.org/packages/7d/26/621b29dcb382e385c390f22d906f062ad0d68a0fd5f596407526b3b00a70/authress-sdk-2.0.34.tar.gz",
    "platform": null,
    "description": "\n<p align=\"center\">\n    <img src=\"https://github.com/Authress/authress-local/assets/5056218/156e3881-b359-4810-bc96-7abeaf9ddbdb\" height=\"300px\" alt=\"Authress Media Banner\">\n</p>\n\n# Authress SDK for Python\n\nThis 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.\n\nThe 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).\n\n<p align=\"center\">\n    <a href=\"https://badge.fury.io/py/authress\" alt=\"Authress pypi package\">\n        <img src=\"https://badge.fury.io/py/authress.svg\">\n    </a>\n    <a href=\"https://github.com/Authress/authress-sdk.py/actions/workflows/build.yml\" alt=\"Build status\">\n      <img src=\"https://github.com/Authress/authress-sdk.py/actions/workflows/build.yml/badge.svg\">\n    </a>\n    <a href=\"https://github.com/Authress/authress-sdk.py/blob/release/3.0/LICENSE\" alt=\"Apache-2.0\">\n      <img src=\"https://img.shields.io/badge/License-Apache%202.0-blue.svg\">\n    </a>\n    <a href=\"https://authress.io/community\" alt=\"authress community\">\n      <img src=\"https://img.shields.io/badge/Community-Authress-fbaf0b.svg\">\n    </a>\n</p>\n\n## Usage\n\n```sh\npip install authress\n```\n(you may need to run `pip` with root permission: `sudo pip install authress`)\n\nThen import the package:\n```python\nimport authress\n```\n\n## Getting Started\n\n\n### Reference Guide\n\nSee the SDK reference guide for a examples of commonly executed blocks with descriptions.\n\n[SDK Documentation](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/README.md)\n\n\n## Quick Examples:\n\n* [Authorize using a user token](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/EXAMPLES.md#authorize-using-a-user-token)\n* [Authorize with a service client](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/EXAMPLES.md#authorize-with-a-service-client)\n* [Using the Authress service client as an API key](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/EXAMPLES.md#using-the-authress-service-client-as-an-api-key)\n* [Embedding service clients into your api](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/EXAMPLES.md#generation-of-service-client)\n* [Token verification](https://github.com/Authress/authress-sdk.py/blob/release/3.0/docs/EXAMPLES.md#token-verifier)\n\n## Contribution Guide\n\n[Developing for the Python SDK](https://github.com/Authress/authress-sdk.py/blob/release/3.0/contributing.md)\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Authress SDK for authorization as a service and interact with the Authress API.",
    "version": "2.0.34",
    "project_urls": {
        "Homepage": "https://github.com/Authress/authress-sdk.py.git"
    },
    "split_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"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcfb903ef598a189fc49d423ef96e17dda9c3dfde1e69bf3ed1372ecaae5a24d",
                "md5": "bb19633f21bf7834334bfa324995b4ba",
                "sha256": "3819adc97ad01f1a5cb9611e66ae0e4627e72cbaa4b78b1b5f6191c659ec389d"
            },
            "downloads": -1,
            "filename": "authress_sdk-2.0.34-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bb19633f21bf7834334bfa324995b4ba",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 46321,
            "upload_time": "2023-08-07T18:42:09",
            "upload_time_iso_8601": "2023-08-07T18:42:09.066076Z",
            "url": "https://files.pythonhosted.org/packages/bc/fb/903ef598a189fc49d423ef96e17dda9c3dfde1e69bf3ed1372ecaae5a24d/authress_sdk-2.0.34-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d26621b29dcb382e385c390f22d906f062ad0d68a0fd5f596407526b3b00a70",
                "md5": "5e525250d701fb28b0510f97bab2a884",
                "sha256": "141d15ccb47f4dcddbd320cd44bc23722e872b5d54813179ec1592c72a58846d"
            },
            "downloads": -1,
            "filename": "authress-sdk-2.0.34.tar.gz",
            "has_sig": false,
            "md5_digest": "5e525250d701fb28b0510f97bab2a884",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 29126,
            "upload_time": "2023-08-07T18:42:10",
            "upload_time_iso_8601": "2023-08-07T18:42:10.729849Z",
            "url": "https://files.pythonhosted.org/packages/7d/26/621b29dcb382e385c390f22d906f062ad0d68a0fd5f596407526b3b00a70/authress-sdk-2.0.34.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-07 18:42:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Authress",
    "github_project": "authress-sdk.py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "authress-sdk"
}
        
Elapsed time: 0.09865s