Skip to main content

Drop-in curl_cffi fork with automatically harvested browser fingerprints for new Chrome and Safari releases.

Project description

curl-cffi-fingerprints

PyPI version PyPI - Python Version Preset

A drop-in fork of curl_cffi whose one job is keeping browser fingerprints fresh: every new Chrome and Safari release gets its impersonation profile harvested, verified, and shipped automatically.

curl_cffi is a Python binding for curl-impersonate via cffi. Unlike pure-Python HTTP clients such as httpx or requests, it can impersonate browsers' TLS/JA3 and HTTP/2 fingerprints, so requests look like they come from a real browser.

This fork changes nothing about the API. It exists because upstream only adds impersonation targets when there is a protocol-level change worth supporting, while scraping in practice often needs the current browser version. Here, new versions land as soon as they are released.

How it works

The fingerprints are harvested and shipped by an automated pipeline across two repositories:

  1. aleixrodriala/curl-impersonate captures profiles from real browsers for each new release — Chrome (desktop and Android) and Safari (macOS and iOS) — as declarative JSON profiles, and publishes a libcurl-impersonate build.
  2. That release triggers a sync workflow in this repository, which adds the new targets, bumps the version, builds wheels for all supported platforms, and publishes them to PyPI and GitHub Releases.

No manual step in between: a new browser release becomes a new installable version of this package.

Versioning

Versions follow <upstream-base>.<chrome-major>.<revision>. For example, 0.16.0.151.2 is upstream curl_cffi 0.16.0 plus the fingerprint drop for Chrome 151, revision 2. Upgrading within the same upstream base only adds fingerprints; API changes come from tracking upstream releases.

Install

pip install curl-cffi-fingerprints --upgrade

This works on Linux, macOS and Windows out of the box.

The import name is still curl_cffi — existing code keeps working unchanged. Because it provides the same import package, uninstall the upstream package first if you have it:

pip uninstall -y curl-cffi
pip install curl-cffi-fingerprints --upgrade

Wheels are also attached to GitHub Releases if you prefer pinning an exact fingerprint drop.

Usage

The API is identical to upstream curl_cffi: a requests-like high-level API, a low-level curl API, asyncio, WebSockets, and the curl-cffi CLI. Full documentation lives at curl-cffi.readthedocs.io.

import curl_cffi

# Notice the impersonate parameter: "chrome" always resolves to the newest
# harvested Chrome fingerprint, so you stay current just by upgrading.
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome")
print(r.json())

# Similar rolling aliases: "chrome_android", "safari", "safari_ios"
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="safari_ios")

# Or pin a specific version
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome151")

# http/3 with impersonation
r = curl_cffi.get("https://example.com", http_version="v3", impersonate="chrome")

# Bring your own fingerprints for non-browser targets
r = curl_cffi.get("https://tls.browserleaks.com/json", ja3=..., akamai=...)

Sessions and asyncio:

s = curl_cffi.Session()
s.get("https://httpbin.org/cookies/set/foo/bar")
print(s.cookies)

from curl_cffi import AsyncSession

async with AsyncSession() as s:
    r = await s.get("https://example.com")

CLI:

# Debug a URL with impersonation
curl-cffi get tls.browserleaks.com/json --impersonate chrome

# List the fingerprints available on your install
curl-cffi list

Supported targets

All upstream targets are included, plus the fork's harvested profiles for new Chrome (desktop and Android) and Safari (macOS and iOS) releases. To see exactly what your installed version supports, run curl-cffi list; the profile sources live in the curl-impersonate fork.

Relationship to upstream

This fork stays intentionally thin: all library development happens in lexiforest/curl_cffi, which this fork tracks and merges regularly. Only the fingerprint pipeline and the harvested profiles are added here.

  • Library bugs or feature requests → report them upstream.
  • Fingerprint issues (wrong/missing profile for a browser version) → report them at the curl-impersonate fork.

If you need commercial support or fingerprints beyond Chrome/Safari, check the upstream ecosystem at impersonate.pro.

Acknowledgement

MIT licensed.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

curl_cffi_fingerprints-0.16.0.151.2.tar.gz (233.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_aarch64.whl (12.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_10_15_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

curl_cffi_fingerprints-0.16.0.151.2-cp313-abi3-android_24_arm64_v8a.whl (8.6 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13+

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10+Windows ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10+Windows x86-64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_aarch64.whl (12.6 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (12.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (12.8 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.28+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ x86-64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl (12.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ i686

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10+macOS 10.9+ x86-64

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2.tar.gz.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2.tar.gz
Algorithm Hash digest
SHA256 e193ee76171378dee5f2688263db627ae0bcd4f6cf4505a11613b482af3fd415
MD5 096f5ad78271d1f366075b19686f2cb2
BLAKE2b-256 b86aff595346ae3268ee92682d44ba82a42001359e4665fcab78cd5b477b5ade

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2.tar.gz:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3372388b4e8fa569b729a4343af004a50b29ba085cb35f837f244f4bc25686b7
MD5 51f3aa7fc8196d25e3931fdb0ab3c2ae
BLAKE2b-256 8d9949b5dc40105d9a8d47524d5e05f0f4a8bdb2c4450e619363f5354b0e0710

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_arm64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c74fd21d349bddda92212cb9e23a90f62fd2354592989af70ac5f7996eca7818
MD5 2d5e3ddad802310ca5b4a03ca5f3bf51
BLAKE2b-256 8d315719082917d104591cdf3c9e1b98cfd2035135a81e3ebad74a9b9bd5aaca

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-win_amd64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab3a41b21d646d616bf95df572f84e952a391a1293fe23f952b5bbf81a4e03c2
MD5 c08b36cc3155507963ae78aeca3c3b02
BLAKE2b-256 7f1b09caa907677a50668e366840f1cc416aa36cbafabcfc5f235a730626dc86

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f08218f1c54d4be040c2b0bc7bc9de33f9f34be5e84a59d208f61debc1334ec4
MD5 0efd7f8582acf32d9c48e2ceb94f55e4
BLAKE2b-256 acd3f9a49b287e12f48e29f946a8c94058ec41fcb84d57d0ee2f7a30ff1866fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 14e7c7c02137b8bf82bd67acc95c50b3056ff37c9c5bffe3aa9abb10f1124e71
MD5 82b7ff07104345883d64877121b9680d
BLAKE2b-256 dc4f9a714bfe3730154ad7978e7e386502ded2270b2b764588838b33eb1694bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7029d614eccc889ce80da5cb76432f84754589e827a408f5944062e995cb0559
MD5 aab12a3d11bac0a3fa8d8152e6d07061
BLAKE2b-256 0ad20f48ec5fcac5b29dd4e950acc5e882cbbbbf8fc4fa96daf2116b53540699

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4487b49da0563f71cd28a174eae2bf0534db8d3fbfaa206e6593602e535c611
MD5 e6b2bba9fd6413c9abd30ddab164b3c8
BLAKE2b-256 b517879bc0ec5de75ae568f7c482b5ef0c61f1e31fc201a4ce3710c2803d3d6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f473fb4b93703ee8b6af4dbcbb83d036d01f8c6fd16c9ef1ab702047322c401
MD5 ddb3ebe72442b1a71041fa4582ba58f5
BLAKE2b-256 3d7589469f6b6be9045b3cd77d27164585ac444a908c9b17095eb185082f1939

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp313-abi3-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp313-abi3-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 6075f9ea63b44835617db19376d1f992360b9c571af8da2d1d73d8f25517db24
MD5 52ec3c363678a8e306eeaf332ccdb451
BLAKE2b-256 9701b7c080fa4a8ae0bce2dd7a7d237351b2e88bc7e7019ce5e4956950338d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp313-abi3-android_24_arm64_v8a.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 0a8305fe3685ba7ec4bd416b794083484a751dbddf8a4c04d8acdbf25705d7bc
MD5 be0ebc4b5c0b2decec3f0ca60a057b12
BLAKE2b-256 96f769d4b8e779956be91bc4bf71fa6a79687a849dff49de4d90d8d8aaee636e

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_arm64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6f42ca35b91a855dd18c9d17e847057e77313ab34d910cf0b542a60e95bb8f87
MD5 218e28ac188f195e64b1f04c36250842
BLAKE2b-256 55d4ab0bb27dda0e91396a08df050180d6ea1e010738c56cb727bd8888dac356

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-win_amd64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b87c7cda192db09a3ebfbe7e704e2865a7bf6faddcb39d74e5b60261f6ef300
MD5 8905b189f80a1e858266674aed82b33b
BLAKE2b-256 941417a1dc30a07e8711b506f9585bc8ff8e6a4ce3b546f96ce445337319a4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1a69bf41c30236e5b0c878fa6580c742dacbffc6e08c97102afa0700778b9c0
MD5 32d672e7cb6bf0dc1a14a1ebe65ca2ae
BLAKE2b-256 7818a722d6576a61ce534337f94c13f04f709860f7b5fce115da0ec3e9cf9c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 abfb635caf95a5fa0bb89941844ce411a92472816fe6541dba5bf1f91faff31c
MD5 cdecf4994710a3ec459bac54792419a1
BLAKE2b-256 cabe4525ee40e315bf33b2225733880960ea330cd50e1f0ddb48f72085662dd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ef32f1cc23c2e344ce2d5e652d811ef17768895952014e7d047b1993b8b0e3eb
MD5 62ecc77b469f3048d2e317292e328718
BLAKE2b-256 a95b12c3002d248cbc606b52d62c267eba49453cfed2a21fbe6e8e23637a761c

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 424477045a89dd475fdeb3f19cbd1ead8f0a3e92bd965587c3d497ec2343316a
MD5 43bae3b6c1ea1d2a12070d0276c76050
BLAKE2b-256 fae89e789e5bffa4e90262a8469a760d770ddc7aaedc8d27bd256f945dfa179f

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 c63f005e998b578f323c0dc2fef62a2d099391538e685bbe504a54ce1550e98f
MD5 0f4eeb1c5a7563530cace7f1ecf13462
BLAKE2b-256 72ad7f833773b9989806bd50ebf87b3d09f94b4d585a064dcea44eea33da69c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e51126d341467640291c3c35f80dd2b110b8ffd6cee99d2929a7b5f6a1e73bc3
MD5 ac42f1a94bab0e195c2fdc6e47e84b89
BLAKE2b-256 5e216aa3254741c2acd13da05b25728f1bf7db83798940d9d6d12374f3be50ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dafe7670e662f8a2636bd1b1164c65cd77aad65a9e37414875a8cd2c0ccf5274
MD5 89f1b8bccb7d3b693d75254536eb6c01
BLAKE2b-256 69266ef50c030c94101c2a991d6326224155f765e67e79892eafd6e26652b134

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2aaa0da0a47fcce769636b5ca77134c66102d36bd5aed3b4ef396a6e3fa3adf9
MD5 5f3b3e7940f141b9f758fd674e26f291
BLAKE2b-256 c7b09d71071d478c7ad7d4a98890737d6ef1cc6b96959e93cc60903ad9408350

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.2-cp310-abi3-macosx_10_9_x86_64.whl:

Publisher: release.yaml on aleixrodriala/curl_cffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page