Apify Fingerprint Datapoints
Apify Fingerprint Datapoints is a Python package that provides a collection of browser fingerprint data. It serves as a data dependency for other libraries within the Apify Fingerprint Suite, such as `apify-fingerprint`, and is not intended for direct use by end-users. It undergoes frequent, automated releases primarily to update the underlying fingerprint models.
Warnings
- gotcha This package is a data-only dependency and not designed for direct user interaction. Attempting to use it directly may lead to unexpected behavior or an inability to achieve intended results.
- gotcha The version numbers for this package (e.g., v0.12.0) primarily reflect updates to the data models it contains. There are very few changes to the package's Python API itself, which remains highly stable.
- gotcha Direct access to the raw data contained within this package is possible but discouraged. The data format may change without notice, and utility functions in `apify-fingerprint` are designed to handle these data structures safely.
Install
-
pip install apify-fingerprint-datapoints
Imports
- FingerprintType
from apify_fingerprint_datapoints._type import FingerprintType
Quickstart
# The 'apify-fingerprint-datapoints' package primarily provides data # and is not intended for direct user-facing interaction or a typical quickstart. # For generating browser fingerprints, install and use 'apify-fingerprint' instead. # Example for 'apify-fingerprint': # from apify_fingerprint import FingerprintGenerator # generator = FingerprintGenerator() # fingerprint = generator.get_fingerprint()