Skip to main content

Authena Python SDK

Project description

Authena Python SDK

Description

Authena Python SDK allows an easy and fast integration with AUTHENA - authentication and authorization API.

Remarks

Biomapas aims to modernize life-science industry by sharing its IT knowledge with other companies and the community. This is an open source library intended to be used by anyone. Improvements and pull requests are welcome.

Related technology

  • Python 3

Assumptions

The project assumes the following:

  • You have basic-good knowledge in python programming.

Install

The project is built and uploaded to PyPi. Install it by using pip.

pip install authena_python_sdk

Or directly install it through source.

pip install .

Usage & Examples

SDK client

Create Authena SDK client using the given AUTHENA PUBLIC API URL, API KEY, and API SECRET:

from authena_python_sdk.client import Client
from authena_python_sdk.config import Config

AUTHENA_PUBLIC_API_URL = 'http://localhost'
AUTHENA_API_KEY = 'DFCC345BE3C0DC42DF8A123F7579'
AUTHENA_API_SECRET = '4AomCEeUG2j7epT87GahHfh2e8YnaDRthx5k0zfgnnY='

sdk_client = Client(
    api_key=AUTHENA_API_KEY,
    api_secret=AUTHENA_API_SECRET,
    config=Config(
        public_api_url=AUTHENA_PUBLIC_API_URL
    )
)

Create a user

To create user, use SDK client method - user.create.

Request syntax:

response = sdk_client.user.create(
    email='string',
    preferred_username='string',
    first_name='string',
    last_name='string',
    username='string',
    group_ids=['string', 'string', '...'],
    permissions=['string', 'string', '...']
)

Parameters

  • email (string) [REQUIRED] - Email address of the user.
  • preferred_username (string) [REQUIRED] - Preferred username of the user.
  • first_name (string) [REQUIRED] - Given name of the user.
  • last_name (string) [REQUIRED] - Family name of the user.
  • username (string) [OPTIONAL] - Unique idnetifier of the user.
  • group_ids (list) [OPTIONAL] - A list of group unique identifiers.
  • permissions (list) [OPTIONAL] - A list of user permissions.

Returns

Return Type: User

User Attributes:

  • username (string) - Unique identifier of newly created user.
  • preferred_username (string) - Preferred username of newly created user.
  • email (string) - Email address of newly created user.
  • first_name (string) - Given name of newly created user.
  • last_name (string) - Family name of newly created user.
  • tmp_password (string) - Temporary password of newly created user.
  • group_ids (list) - A list of unique identifiers of assigned permission groups.
  • permissions (list) - A list of directly assigned user permissions.

Get User

Retrieval of previously created user.

Request syntax:

response = sdk_client.user.get(username='string')

Parameters

  • username (string) [REQUE] - Unique idnetifier of the user.

Returns

Return Type: User

User Attributes:

  • username (string) - Unique identifier of newly created user.
  • preferred_username (string) - Preferred username of newly created user.
  • email (string) - Email address of newly created user.
  • first_name (string) - Given name of newly created user.
  • last_name (string) - Family name of newly created user.
  • group_ids (list) - A list of unique identifiers of assigned permission groups.
  • permissions (list) - A list of directly assigned user permissions.
  • is_active (bool) - Specifies whether the user is enabled.

Please check the documentation available here, which contains information on how to use the library, and a complete API reference guide.

Testing

The project has tests that can be run. Simply run:

pytest authena_python_sdk_tests

Contribution

Found a bug? Want to add or suggest a new feature?
Contributions of any kind are gladly welcome. You may contact us directly, create a pull-request or an issue in github platform. Lets modernize the world together.

Release history

0.0.3

  • Fix mismatched environment variable names in the pipeline.

0.0.2

  • Add integration tests.

0.0.1

  • Initial build.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

authena_python_sdk-0.0.3.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

authena_python_sdk-0.0.3-py3-none-any.whl (29.3 kB view details)

Uploaded Python 3

File details

Details for the file authena_python_sdk-0.0.3.tar.gz.

File metadata

  • Download URL: authena_python_sdk-0.0.3.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for authena_python_sdk-0.0.3.tar.gz
Algorithm Hash digest
SHA256 b7785ba0162945fa19de920fe0fa3b0aa07cd7d030374368d16987a1324fc7e5
MD5 b6daf5fd0f5f53a2b4732bacd346cb79
BLAKE2b-256 8024657caff7e8956b47f574a69b66865b3df8977adb8eeab848974668c691a8

See more details on using hashes here.

File details

Details for the file authena_python_sdk-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for authena_python_sdk-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 eeaa106d39f98aaf5dc3ed82874f42f0ed7d37976a5c5bb4f24361d813f22202
MD5 97dee9c93e2b52abbe1d5bb55593e178
BLAKE2b-256 8a915cfb52dcfebc26b7c6b4a48e73485de1c65c4a17d48110f66f99455838d1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page