Metadata-Version: 2.1
Name: loginid
Version: 0.1.4
Summary: Interface SDK for LoginID infrastructure
Home-page: https://loginid.io
Author: Quang Hoang
Author-email: quang@loginid.io
License: UNKNOWN
Project-URL: Documentation, https://docs.loginid.io/Server-SDKs/Python/python-get-started
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# LoginID Python SDK

## Description

Add FIDO hardware based biometric authentication to your website or app in 3 easy steps:

* [View our documentation](https://docs.loginid.io/Server-SDKs/Python/python-get-started)
* [Sign up on the dashboard](https://usw1.loginid.io/en/register/get-started)
* [View our tutorial](https://tutorial.loginid.io/)

LoginID’s Pypi Package enables web developers to easily add FIDO/FIDO certified strong customer authentication to their site or app. By utilizing the biometrics on the end user’s device, LoginID’s SDK enables seamless passwordless logins and payment authentications via our [Transaction Confirmation](https://docs.loginid.io/Guides/Flows/tx-conf-guide) with Digital Signature tool. LoginID is PSD2, GDPR, CCPA, and HIPPA compliant.

## Installation

Install with `pip` 
```
pip install loginid
```

## Quick start
Once the package is installed, you can import the package and connect to LoginID's backend

```
from loginid import LoginID, LoginIdManagement

lApplication = LoginID(CLIENT_ID, PRIVATE_KEY)
lManagement = LoginIdManagement(MANAGEMNET_CLIENT_ID, MANAGEMENT_PRIVATE_KEY)

# verify a JWT token
token = "some_JWT_token" 
print(lApplication.verify_token(token, USERNAME))

# extract user profile with management application
print(lManagement.get_user(USERNAME))
```

Refer to our documentations at
https://docs.loginid.io/Server-SDKs/Python/python-get-started for more details.

## Tell us how we’re doing
Have our solution in production? Tell us about your site on marketing@loginid.io and we’ll post on our social channels!

