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 on Windows, macOS, Linux and Android, and Safari on macOS and iOS — as declarative JSON profiles, and publishes a libcurl-impersonate build. Each profile carries the browser's full header set for that OS (User-Agent, client hints and header order), so an impersonated request matches a real browser beyond just the TLS/HTTP2 fingerprint.
  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())

# Per-OS rolling aliases: the profile carries the full header set of a real
# browser on that OS — User-Agent, sec-ch-ua, sec-ch-ua-platform, sec-fetch-*,
# accept-language and header order all match, not just the TLS fingerprint.
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome_windows")
# also: "chrome_macos", "chrome_linux", "chrome_android"

# Other rolling aliases: "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.3.tar.gz (233.9 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.3-cp314-cp314t-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

curl_cffi_fingerprints-0.16.0.151.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp310-abi3-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10+Windows ARM64

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

Uploaded CPython 3.10+Windows x86-64

curl_cffi_fingerprints-0.16.0.151.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3.tar.gz
Algorithm Hash digest
SHA256 a09d2e433652093b8c3e9fb8c597663e068dd4d74950d3bad8d30b8e43c5faa1
MD5 d98c86294926bffb109ab341ee22b00a
BLAKE2b-256 c0f52ded6e107940e6a7bada05d8ba4e123fec4daf6b5f3d4817f58a66887681

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3.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.3-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 520f65ab848a426ff4eb19b6d18048f8ad93f24021a5f8b9286f53ba13e023b6
MD5 00236fff522bee7ba6121a7dd77a25f7
BLAKE2b-256 e7f6b4bfaf752c19b49df7183e9804c3cf93650cb404d52bf29d3aba74fbc110

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7a1f0962559b04910c1945c3adc10d7bdf05b1a38a443027ac58d599d1a9d50c
MD5 1d71269473ff158030403695d5195d94
BLAKE2b-256 29014b082f4a822d20bf816dab26596ca927e27a38495c5ab9a691dfd5451df8

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44f4e5f355d248001f1d9e6c8ae20a86abdfa075bdc0383ce45744dc15f5c6d4
MD5 9bf29d469ce0b801cf153365479b7a4a
BLAKE2b-256 5264d0e36484a709a76496e70bdf4d35a31415bfa5853d3c46367b0fb2522521

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b26ee3c025d73c0663e375d10afbbc981646eb321afe6c834ffbd0f2b1b7e30
MD5 d20f362ec75277cf95976b75d5f9ae19
BLAKE2b-256 82bc2f9b595506d1b41577852db9d650ac695c5fe719c8438a3dcf23bd883a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e1fffec44bef2ecb4fe69b11ba9b5db13792f3c498bb42b0865b44c13d30a6fd
MD5 8470e858bc3e06f393d7637093e89c23
BLAKE2b-256 ede27f7736b096ab48d7e2667ecede781897c82c5844a72a98bee2a5613dd30d

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0191fe61955b44e3e2e3041fa0c31e5e13d8bea62f2009f5b6d38c787bc062df
MD5 c0ec9cf05fcf89b2c86a8e57b97d0e10
BLAKE2b-256 f457c1f366926b6a89f0468f7d05cb9b8bf9a371368497bdfa0a0b55d0b7e6a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4e9cdc5b403985de64dd516e2edc174fd1bdd3989b62cee905bdea5ecb95de2
MD5 20ec626b650e78dcb9120ec2310ffc0b
BLAKE2b-256 d6e3cdbac1e4afbc3757884f9fd2781248f15722178b2032e0ff2e059c806353

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3cbab5f3fa3133ac99700501c9b12519b48d49d2d2f117bcf720eb4b1bbf3ca0
MD5 bcae33ab46dc84517726e12ad4359ad3
BLAKE2b-256 26a746408ed288555f87488ea161923400111b4ea6b03711243e294a7c7ddaa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp313-abi3-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp313-abi3-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 e30fa7ef55c07f6d41a5c6a397988aa7fe459ef36fd4d8f1c53f0dc312cabb48
MD5 a735efec9066d1239ced8b2c1c0a8c74
BLAKE2b-256 5ad4634b028bb624ad96dd0478889c5bfa97223646d69f773e1162149eb63779

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 2ff3a9ce377820c4429ca3b3504b6ef5d628619bc2fbdaa50d06587d1e43c6c7
MD5 9fe2d2eae46a045dbf8da3cacd1a32d5
BLAKE2b-256 a4c3b607d4c1ed7cd5eb589a39dc646dc0845289566a4526e6ab51447018463d

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 f862f8203f45684f5679caf82dc430135ae969c3e0a8ed93cc27df6587984943
MD5 ed8c30be90eaa72dc49c42f60cfb0391
BLAKE2b-256 468b6c449110059eeab107db0cae45e8311a2b654c1d77684e21b3b714fdf8c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40d330e2d1b977812c90b0c526480312c45df6ef7371c061c40e5f10e7f1876b
MD5 f556e109fc295fac1d06efcb501c01cb
BLAKE2b-256 746e0ba199687bb3a5150e8e534872a0fba2b0b1cf524e64fa813cfd1c9e6ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb609646da1a3aefcedfa883467f511a5f6b3656c7aab088f7b35f2b7eb52950
MD5 510f3882f2af9b6603608d25b86fc38d
BLAKE2b-256 cd531be11106aca14b063db1b0efca83f2dbebd948c7bed2c51880e5177fd818

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6ec4ed1b93c5e7e464bbb512d43f217bfc3d9f8c076b2777244fbe1e58f86c08
MD5 7fe2a3f4545ec49e38086fd4d9cc84cf
BLAKE2b-256 57c9d1b17f2bfe37e3b5727d785f85dfb0b9e5b0f42ca476a0cb72e843804a9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a954f4966f0391acc70541e00aad45f0a6acda717e29d3307d6f57907252ce53
MD5 4685328bd9e94343999d93fbee4d5216
BLAKE2b-256 b154ca173500115afe34dbf01db52e5426406f806003211674111ba27af3794c

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 163cf8839118a4d2d0c3c24153c0064318d36408a25e4d30d973b0dd733d7787
MD5 7f626898161026e7f3169d6c3484c206
BLAKE2b-256 f709989404e7174d0c94a5c5d286bbb6f8c5fc50d784dde7bd99a7acb1106881

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 c74fc02e8141c7ad275f30da1b40ec5442ed0fef40c4dfc1c762d1a982c24d6f
MD5 5a3aa07c99fb531ba3a00a2b8713603c
BLAKE2b-256 7d682caa22544d2f193160379d9e5fe822f6fe444b694adb4cd204c470f5ff41

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2a71b3ec4ca217dcac7b8ce2a06fa5339d3e7e93d66d55fc9d0a5c941728618c
MD5 0ba2284ff2ac08710bc90f34a39bf4cf
BLAKE2b-256 0d1375910dcc3db67622c9dea7d50f407b2a72105c6c24d6a4a6bb0b66b12d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27dd5c1fa06bad07ae95c3672582d820ab3fd319fcd634a10900fa09ac05dddf
MD5 0d10df3e59128392d40810d7f43f8194
BLAKE2b-256 9082e542bba3dad3c2603fdca56de8c6cfdd03950362729142cafcf16c2b6f6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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.3-cp310-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi_fingerprints-0.16.0.151.3-cp310-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d47566eba4fed22af3c6d2916dadc9bb42e3c27e9e936fc7d405882ff288f19
MD5 3b8bde002aaa4b7b9f26f0e73f67b97b
BLAKE2b-256 5bc5a83ce3e5730a3b52d53d0c08fc2475dd9c783731ba1488675460fd2e31da

See more details on using hashes here.

Provenance

The following attestation bundles were made for curl_cffi_fingerprints-0.16.0.151.3-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