Registry / http-networking / fingerprint-pro-server-api-sdk

fingerprint-pro-server-api-sdk

JSON →
library8.13.0pypypi✓ verified 86d ago

Deprecated Python SDK for Fingerprint Pro Server API v3. Provides a client to manage identification events, webhook processing, and data exports for server-side usage. Current version 8.13.0 is the final release under this package name. Users must migrate to the new fingerprint-server-sdk package for Server API v4. Release cadence is irregular.

pip install fingerprint-pro-server-api-sdk==8.13.0
INSTALL
IMPORT
SIG · FINGERPRINT-PRO-SE
F
fingerprint-pro-server-api-sdk
http-networkingpythonv8.13.0
Install
2.8s avg
Import
440ms
Disk
37MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v8.13.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.462s · 38.3MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 2.8s · import 0.418s · 39MB
37MB installed
● package 37MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ApiClient
from fingerprint_pro_server_api_sdk import ApiClient
from fingerprint_server_sdk import ApiClient
Wrong package: fingerprint_server_sdk uses a different client class
Configuration
from fingerprint_pro_server_api_sdk import Configuration
FingerprintApi
from fingerprint_pro_server_api_sdk.api import FingerprintApi
from fingerprint_pro_server_api_sdk import FingerprintApi
FingerprintApi is in the api submodule

Initialize the legacy SDK client and search events. Authentication using bearer token. Works with v3 API.

import os from fingerprint_pro_server_api_sdk import ApiClient, Configuration from fingerprint_pro_server_api_sdk.api import FingerprintApi config = Configuration() config.api_key['Authorization'] = os.environ.get('FINGERPRINT_API_KEY', '') config.api_key_prefix['Authorization'] = 'Bearer' client = ApiClient(config) api = FingerprintApi(client) try: events = api.search_events() print(events) except Exception as e: print(f"Error: {e}")
Debug
Known issues
deprecatedPackage is deprecated. Use fingerprint_server_sdk (v9+) for Server API v4. No further updates planned.
fix
Migrate to fingerprint_server_sdk following the official migration guide: https://dev.fingerprint.com/reference/migrating-from-server-api-v3-to-v4
affects: >=8.0.0
breakingImport path changed in v9.0.0. fingerprint_pro_server_api_sdk renamed to fingerprint_server_sdk. All class names may differ.
fix
Replace 'import fingerprint_pro_server_api_sdk' with 'import fingerprint_server_sdk' and update class references per v4 docs.
affects: 9.0.0+
gotchaAPI key must be passed as 'Authorization' header with 'Bearer' prefix via api_key_prefix. Omitting the prefix causes authentication errors.
fix
Set config.api_key_prefix['Authorization'] = 'Bearer' before making requests.
affects: all
gotchaFingerprintApi is located in the api submodule, not top-level. Importing directly from the package root raises AttributeError.
fix
Use 'from fingerprint_pro_server_api_sdk.api import FingerprintApi'.
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'fingerprint_pro_server_api_sdk'
Package not installed or using new name fingerprint_server_sdk.
fix
Install the correct package: 'pip install fingerprint-pro-server-api-sdk==8.13.0' or migrate to fingerprint_server_sdk.
AttributeError: module 'fingerprint_pro_server_api_sdk' has no attribute 'FingerprintApi'
FingerprintApi is in the api submodule, not top-level.
fix
Use 'from fingerprint_pro_server_api_sdk.api import FingerprintApi'.
ApiException: (401) Reason: Unauthorized
API key missing or not configured with 'Bearer' prefix.
fix
Set api_key and prefix: config.api_key['Authorization'] = 'your_key'; config.api_key_prefix['Authorization'] = 'Bearer'.
Upgrade
Version history
8.13.0latest on PyPI · released Apr 13, 2026
Audit
Dependencies
fingerprint_server_sdkrequiredReplacement package for API v4 migration
Agent activity
2 hits · last 30 days
node
2
Resources
fingerprint-pro-server-api-sdk — pip install fingerprint-pro-server-api-sdk · libregistry