Skip to main content

Socian Auth Python SDK for authentication and user management

Project description

Socian Auth Python SDK

Version License Python Versions

Overview

The Socian Auth Python SDK provides a convenient way to interact with the Socian Auth API for authentication and user management.

Installation

You can install the library using pip:

pip install socian-auth

Usage

Initialization

from socian_auth import SocianAuthApiClient

client = SocianAuthApiClient(
    client_id="your_client_id",
    client_secret="your_client_secret",
    ssh_public_key="your_ssh_public_key"
)

Getting Intent

intent_obj = client.get_intent("auth.signIn", "http://localhost:3000/auth/callback")
print(intent_obj)

Checking User Existence

email = "example@example.com"
is_user_exist = client.check_user_exists(intent_id=intent_obj.intent_id, email=email)
print(is_user_exist)

User Signup

user_info = client.user_signup(intent_id=intent_obj.intent_id, name="John Doe", email=email, password="password123")
print(user_info)

User Signin

login_data = client.user_signin(email=email, password="password123")
print(login_data)

User Information

user_info = client.user_info(access_token=login_data.access_token)
print(user_info)

Documentation

For more details and API documentation, please refer to Socian Auth SDK Documentation.

Contributing

If you find any issues or have suggestions for improvement, please open an issue or create a pull request on GitHub.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

socian_auth-0.0.8.tar.gz (6.2 kB view hashes)

Uploaded Source

Built Distribution

socian_auth-0.0.8-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

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