A lightweight Python FaceOnLive SDK for face verification, ID verification, and face liveness detection.
This project provides a simple Python SDK to integrate face verification and identity verification features into applications.
It can be used for face matching, ID verification, and liveness detection in basic biometric workflows.
This SDK is built for simple face verification, ID verification, and face liveness detection use cases. It provides a basic Python interface for integrating biometric features into applications.
Powered by FaceOnLive technology.
## Features
- Face Verification
- ID Verification
- Face Liveness Detection
- Face Matching
install from source:
git clone https://github.com/rakib2026/FaceVerification-SDK.git
cd FaceVerification-SDK
pip install -r requirements.txtfrom faceverification_sdk import Client
client = Client(api_key="YOUR_API_KEY")result = client.verify_face(
image_1="image1.jpg",
image_2="image2.jpg"
)
print(result)result = client.verify_id(
id_image="id.jpg",
face_image="selfie.jpg"
)
print(result)If you find this project useful, please consider giving it a star. It helps the project grow and motivates further improvements.