Metadata-Version: 2.4
Name: reeve_python_sdk
Version: 0.2.0
Summary: Python SDK for the Reeve API - A facial recognition service for person identification and verification
Home-page: https://github.com/qbit-codes/reeve-python-sdk/
Author: muhammedsaidckr
Author-email: muhammedsaidckr@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/qbit-codes/reeve-python-sdk/
Project-URL: Source, https://github.com/qbit-codes/reeve-python-sdk/
Project-URL: Tracker, https://github.com/qbit-codes/reeve-python-sdk/issues
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Description-Content-Type: text/x-rst; charset=UTF-8
License-File: LICENSE.txt
Requires-Dist: importlib-metadata; python_version < "3.8"
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: aiofiles>=23.0.0
Requires-Dist: python-dateutil>=2.8.0
Provides-Extra: testing
Requires-Dist: setuptools; extra == "testing"
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "testing"
Requires-Dist: aioresponses>=0.7.0; extra == "testing"
Dynamic: license-file

.. These are examples of badges you might want to add to your README:
   please update the URLs accordingly

    .. image:: https://api.cirrus-ci.com/github/<USER>/reeve_python_sdk.svg?branch=main
        :alt: Built Status
        :target: https://cirrus-ci.com/github/<USER>/reeve_python_sdk
    .. image:: https://readthedocs.org/projects/reeve_python_sdk/badge/?version=latest
        :alt: ReadTheDocs
        :target: https://reeve_python_sdk.readthedocs.io/en/stable/
    .. image:: https://img.shields.io/coveralls/github/<USER>/reeve_python_sdk/main.svg
        :alt: Coveralls
        :target: https://coveralls.io/r/<USER>/reeve_python_sdk
    .. image:: https://img.shields.io/pypi/v/reeve_python_sdk.svg
        :alt: PyPI-Server
        :target: https://pypi.org/project/reeve_python_sdk/
    .. image:: https://img.shields.io/conda/vn/conda-forge/reeve_python_sdk.svg
        :alt: Conda-Forge
        :target: https://anaconda.org/conda-forge/reeve_python_sdk
    .. image:: https://pepy.tech/badge/reeve_python_sdk/month
        :alt: Monthly Downloads
        :target: https://pepy.tech/project/reeve_python_sdk
    .. image:: https://img.shields.io/twitter/url/http/shields.io.svg?style=social&label=Twitter
        :alt: Twitter
        :target: https://twitter.com/reeve_python_sdk

.. image:: https://img.shields.io/badge/-PyScaffold-005CA0?logo=pyscaffold
    :alt: Project generated with PyScaffold
    :target: https://pyscaffold.org/

|

================
reeve_python_sdk
================


Python SDK for the Reeve API - A facial recognition service for person identification and verification.


This SDK provides a Python interface to interact with the Reeve API, enabling facial recognition capabilities including person management, face enrollment, face recognition, and face verification.

Features
========

* **Authentication** - Username/password login, user registration, password management, and Bearer JWT support
* **Person Management** - Create, list, update, and delete persons
* **Face Management** - Add, list, and delete face images for persons
* **Face Recognition** - Identify unknown faces with confidence scores and face attributes
* **Face Verification** - Verify faces against specific persons or compare two faces
* **Rich Data Models** - Strongly-typed models for all API responses including face attributes

Installation
============

.. code-block:: bash

    pip install reeve_python_sdk

Development Installation
------------------------

.. code-block:: bash

    git clone https://github.com/qbit-codes/reeve-python-sdk.git
    cd reeve-python-sdk
    pip install -e .

Quick Start
===========

Authentication Methods
----------------------

The SDK supports two authentication methods:

**Method 1: Username/Password (Recommended)**

.. code-block:: python

    import asyncio
    from reeve_python_sdk import ReeveClient

    async def main():
        # Auto-login with username and password
        async with ReeveClient(
            api_url="https://api.reeve.example.com",
            username="your-username",
            password="your-password"
        ) as client:
            # Create a person
            person = await client.person.add(firstname="John", lastname="Doe")
            person_id = person["result"]["id"]

            # Add a face to the person
            with open("face.jpg", "rb") as f:
                await client.face.add(person_id=person_id, face=f)

            # Recognize a face
            with open("unknown_face.jpg", "rb") as f:
                result = await client.face.recognize(face=f)
                if result.get("result"):
                    print(f"Recognized: {result['result']['name']}")

    asyncio.run(main())

**Method 2: Direct API Key**

.. code-block:: python

    import asyncio
    from reeve_python_sdk import ReeveClient

    async def main():
        # Use existing JWT token
        async with ReeveClient(
            api_url="https://api.reeve.example.com",
            api_key="your-jwt-token"
        ) as client:
            persons = await client.person.list()
            print(persons)

    asyncio.run(main())

Advanced Usage
--------------

**Manual Login**

.. code-block:: python

    async with ReeveClient(api_url="https://api.reeve.example.com") as client:
        # Login manually
        login_response = await client.auth.login(
            username="admin",
            password="password123"
        )
        print(f"Token: {login_response.token}")
        print(f"Expires: {login_response.expires_at}")

**User Registration (Admin only)**

.. code-block:: python

    async with ReeveClient(
        api_url="https://api.reeve.example.com",
        api_key="admin-token"
    ) as client:
        response = await client.auth.register(
            username="newuser",
            email="user@example.com",
            password="secure-password",
            role="User"
        )
        print(response.message)

**Change Password**

.. code-block:: python

    async with ReeveClient(
        api_url="https://api.reeve.example.com",
        api_key="user-token"
    ) as client:
        response = await client.auth.change_password(
            current_password="old-password",
            new_password="new-password"
        )
        print(response.message)

API Documentation
=================

Full API specification is available in ``docs/swagger.json``.

Testing
=======

Run tests with:

.. code-block:: bash

    pytest

Or with tox for comprehensive testing:

.. code-block:: bash

    tox


.. _pyscaffold-notes:

Note
====

This project has been set up using PyScaffold 4.6. For details and usage
information on PyScaffold see https://pyscaffold.org/.
