Download Latest Version v9.0.1 source code.tar.gz (161.5 kB)
Email in envelope

Get an email when there's a new version of Fingerprint Pro Server Python SDK

Home / v9.0.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-03-17 1.5 kB
v9.0.0 source code.tar.gz 2026-03-17 161.1 kB
v9.0.0 source code.zip 2026-03-17 279.2 kB
Totals: 3 Items   441.9 kB 1

Major Changes

  • Changed library name to fingerprint_server_sdk

    BREAKING CHANGE:

    • You need to change package name to fingerprint_server_sdk.

    MIGRATION_GUIDE:

    Replace imports to new name:

    ```diff

    • import fingerprint_pro_server_api_sdk
    • import fingerprint_server_sdk ```

    If you are using docker compose file, please re-build the SDK. (1f8ea14)

  • Migrate to Server API v4.

    Breaking Changes

    • Flatten event structure. Access fields directly intead of through products wrapper.
    • Remove get_visitors and get_releated_visitors endpoints (use search_events instead).
    • Remove deprecated v3 models (webhook models, product wrapper models, etc.)

    Migration Guide

    Event structure:

    ```diff

    • event.products.identification.data.visitor_id
    • event.identification.visitor_id ```

    Region parameter:

    ```diff

    • Configuration(api_key="key", region="us")
    • from fingerprint_server_sdk.configuration import Region
    • Configuration(api_key="key", region=Region.US) ```

    New Features:

    • New exception classes: TooManyRequestsException, ConflictException, UnprocessableEntityException, ...
    • New v4 models: BotInfo, Canvas, Emoji, EventRuleAction, FontPreferences, ... (f61ab2c)
Source: README.md, updated 2026-03-17