Skip to main content

libcurl ffi bindings for Python, with impersonation support.

Project description

curl_cffi

PyPI Downloads PyPI - Python Version PyPI version Generic badge Generic badge

Documentation

Python binding for curl-impersonate fork via cffi. For commercial support, visit impersonate.pro.

curl_cffi is the most popular Python binding for curl. Unlike other pure python http clients like httpx or requests, curl_cffi can impersonate browsers' TLS/JA3 and HTTP/2 fingerprints. If you are blocked by some website for no obvious reason, you can give curl_cffi a try.

Python 3.10 is the minimum supported version since v0.14.

Recent highlights

  • ๐Ÿ’จ http/3 fingerprints and UDP socks5 proxy support was added in v0.15.0!
  • ๐Ÿฆž Added curl-cffi CLI and skills for debugging and for claws/agents.

Recall.ai - API for meeting recordings

Recall.ai

If youโ€™re looking for a meeting recording API, consider checking out Recall.ai, an API that records Zoom, Google Meet, Microsoft Teams, in-person meetings, and more.

Residential Proxies

Thordata

Thordata: A reliable and cost-effective proxy service provider. One-click collection of public network data, providing enterprises and developers with stable, efficient, and compliant global proxy IP services. Register for a free trial of residential proxies and receive 2000 free SERP API calls.

Sponsors

Maintenance of this project is made possible by all the contributors and sponsors. If you'd like to sponsor this project and have your avatar or company logo appear below click here. ๐Ÿ’–


Bypass Cloudflare with API

Yes Captcha!

Yescaptcha is a proxy service that bypasses Cloudflare and uses the API interface to obtain verified cookies (e.g. cf_clearance). Click here to register: https://yescaptcha.com/i/stfnIO


TLS fingerprinting alone isn't enough for modern bot protection. Hyper Solutions provides the missing piece - API endpoints that generate valid antibot tokens for:

Akamai โ€ข DataDome โ€ข Kasada โ€ข Incapsula

No browser automation. Just simple API calls that return the exact cookies and headers these systems require.

๐Ÿš€ Get Your API Key | ๐Ÿ“– Docs | ๐Ÿ’ฌ Discord


Features

  • Supports JA3/TLS and http2 fingerprints impersonation, including recent browsers and custom fingerprints.
  • Much faster than requests/httpx, on par with aiohttp/pycurl, see benchmarks.
  • Mimics the requests API, no need to learn another one.
  • Pre-compiled, so you don't have to compile on your machine.
  • Supports asyncio with proxy rotation on each request.
  • Supports http 2.0, which requests does not.
  • Supports http 3.0, with fingerprints and udp proxy.
  • Supports websocket.
  • MIT licensed.
requests aiohttp httpx pycurl curl_cffi
http/2 โŒ โŒ โœ… โœ… โœ…
http/3 โŒ โŒ โŒ โ˜‘๏ธ1 โœ…2
sync โœ… โŒ โœ… โœ… โœ…
async โŒ โœ… โœ… โŒ โœ…
websocket โŒ โœ… โŒ โŒ โœ…
native retry โŒ โŒ โŒ โŒ โœ…
fingerprints โŒ โŒ โŒ โŒ โœ…
speed ๐Ÿ‡ ๐Ÿ‡๐Ÿ‡ ๐Ÿ‡ ๐Ÿ‡๐Ÿ‡ ๐Ÿ‡๐Ÿ‡

Notes:

  1. For pycurl, http/3 is usually disabled at compile time by default.
  2. http/3 support since v0.11.4, http/3 proxy and fingerprints since v0.15.0.

curl-cffi CLI(new)

Since v0.15, curl_cffi comes with a CLI called curl-cffi, you can use it for debugging a certain url with the --impersonate option. It can also serve as a web_fetch replacement for "claws" and "agents".

curl httpie curl-cffi
http/2 โœ… โŒ โœ…
http/3 โ˜‘๏ธ1 โŒ โœ…
human-friendly โ˜‘๏ธ2 โœ… โœ…
colorful โŒ โœ… โœ…
fingerprints โŒ โŒ โœ…

Notes:

  1. You need an http/3 enabled curl build, it's not enabled by default, at leat on my machine.
  2. As a long time command line user, I personally feel very comfortable using curl -X POST httpbin.org, but some users may prefer http GET httpbin.org syntax. If you prefer the curl syntax, you can keep using curl-impersonate.

Install

pip install curl_cffi --upgrade

This should work on Linux, macOS and Windows out of the box. If it does not work on you platform, you may need to compile and install curl-impersonate first and set some environment variables like LD_LIBRARY_PATH.

Android support, including Termux, is currently in beta, you can install the beta release for testing. For BSD systems, we need to get libcurl-impersonate compile first, and then add support in curl_cffi. If you are using these OSes, please lend an hand.

To install beta releases:

pip install curl_cffi --upgrade --pre

To install unstable version from GitHub:

git clone https://github.com/lexiforest/curl_cffi/
cd curl_cffi
make preprocess
pip install .

Usage

curl_cffi comes with a low-level curl API and a high-level requests-like API. curl_cffi also bundles with a CLI called curl-cffi.

CLI

curl-cffi get tls.browserleaks.com/json

# curl-cffi can be hard to type, use an alias if you want
alias imp=curl-cffi
imp get tls.browserleaks.com/json --impersonate chrome

For a complete CLI guide, see docs.

requests-like

import curl_cffi

# Notice the impersonate parameter
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome")

print(r.json())
# output: {..., "ja3n_hash": "aa56c057ad164ec4fdcb7a5a283be9fc", ...}
# the js3n fingerprint should be the same as target browser

# To keep using the latest browser version as `curl_cffi` updates,
# simply set impersonate="chrome" without specifying a version.
# Other similar values are: "safari" and "safari_ios"
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome")

# Use http/3 with impersonation
r = curl_cffi.get(
    "https://fp.impersonate.pro/api/http3",
    http_version="v3",
    impersonate="chrome"
)

# Randomly choose a browser version based on current market share in real world
# from: https://caniuse.com/usage-table
# NOTE: this is a pro feature.
r = curl_cffi.get("https://example.com", impersonate="realworld")

# To pin a specific version, use version numbers together.
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome124")

# To impersonate other than browsers, bring your own ja3/akamai strings
# See examples directory for details.
r = curl_cffi.get("https://tls.browserleaks.com/json", ja3=..., akamai=...)

# http/socks proxies are supported
proxies = {"https": "http://localhost:3128"}
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome", proxies=proxies)

proxies = {"https": "socks://localhost:3128"}
r = curl_cffi.get("https://tls.browserleaks.com/json", impersonate="chrome", proxies=proxies)

Sessions

s = curl_cffi.Session()

# httpbin is a http test website, this endpoint makes the server set cookies
s.get("https://httpbin.org/cookies/set/foo/bar")
print(s.cookies)
# <Cookies[<Cookie foo=bar for httpbin.org />]>

# retrieve cookies again to verify
r = s.get("https://httpbin.org/cookies")
print(r.json())
# {'cookies': {'foo': 'bar'}}

Supported impersonate browsers

curl_cffi supports the same browser versions as supported by my fork of curl-impersonate:

Open source version of curl_cffi includes versions whose fingerprints differ from previous versions. If you see a version, e.g. chrome135, were skipped, you can simply impersonate it with your own headers and the previous version.

If you don't want to look up the headers etc, by yourself, consider buying commercial support from impersonate.pro, we have comprehensive browser fingerprints database for almost all the browser versions on various platforms.

If you are trying to impersonate a target other than a browser, use ja3=... and akamai=... to specify your own customized fingerprints. See the docs on impersonation for details.

Browser Open Source Pro version
Chrome chrome99, chrome100, chrome101, chrome104, chrome107, chrome110, chrome116[1], chrome119[1], chrome120[1], chrome123[3], chrome124[3], chrome131[4], chrome133a[5][6], chrome136[6], chrome142, chrome145[9], chrome146[9] chrome132, chrome134, chrome135
Chrome Android chrome99_android, chrome131_android [4] chrome132_android, chrome133_android, chrome134_android, chrome135_android
Chrome iOS N/A coming soon
Safari [7] safari153 [2], safari155 [2], safari170 [1], safari180 [4], safari184 [6], safari260 [8] coming soon
Safari iOS [7] safari172_ios[1], safari180_ios[4], safari184_ios [6], safari260_ios [8] coming soon
Firefox firefox133[5], firefox135[7], firefox144, firefox147[9] coming soon
Firefox Android N/A firefox135_android
Tor tor145 [7] coming soon
Edge edge99, edge101 edge133, edge135
Opera N/A coming soon
Brave N/A coming soon

Notes:

  1. Added in version 0.6.0.
  2. Fixed in version 0.6.0, previous http2 fingerprints were not correct.
  3. Added in version 0.7.0.
  4. Added in version 0.8.0.
  5. Added in version 0.9.0.
  6. The version postfix -a(e.g. chrome133a) means that this is an alternative version, i.e. the fingerprint has not been officially updated by browser, but has been observed because of A/B testing.
  7. Added in version 0.10.0.
  8. Added in version 0.11.0.
  9. Since 0.11.0, the format safari184_ios is preferred over safari18_4_ios, both are supported, but the latter is quite confusing and hard to parse.
  10. Added in 0.12.0.
  11. http3 support included.

Asyncio

from curl_cffi import AsyncSession

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

More concurrency:

import asyncio
from curl_cffi import AsyncSession

urls = [
    "https://google.com/",
    "https://facebook.com/",
    "https://twitter.com/",
]

async with AsyncSession() as s:
    tasks = []
    for url in urls:
        task = s.get(url)
        tasks.append(task)
    results = await asyncio.gather(*tasks)

For low-level APIs, Scrapy integration and other advanced topics, see the docs for more details.

WebSockets

from curl_cffi import WebSocket

def on_message(ws: WebSocket, message: str | bytes):
    print(message)

ws = WebSocket(on_message=on_message)
ws.run_forever("wss://api.gemini.com/v1/marketdata/BTCUSD")

Asyncio WebSockets

import asyncio
from curl_cffi import AsyncSession

async with AsyncSession() as session:
    async with session.ws_connect("wss://echo.websocket.org") as ws:
        await asyncio.gather(*[ws.send_str("Hello, World!") for _ in range(10)])
        async for message in ws:
            print(message)

Ecosystem

Acknowledgement

  • Originally forked from multippt/python_curl_cffi, which is under the MIT license.
  • Headers/Cookies files are copied from httpx, which is under the BSD license.
  • Asyncio support is inspired by Tornado's curl http client.
  • The synchronous WebSocket API is inspired by websocket_client.
  • The asynchronous WebSocket API is inspired by aiohttp.

Contributing

When submitting an PR, please use a different branch other than main and check the "Allow edits by maintainers" box, so I can update your PR with lint or style fixes. Thanks!

AI Policy

  • Using AI is neither encouraged nor discouraged, use it by your own choice.
  • The bottom line here is that every line of code should be reviewed by human, and should be proven to work.
  • It's not guaranteed that AI will come up with the cleanest solution, you are responsible to guide it to the right way you know.
  • Fix any lint errors, make sure your code follows the established convention in this project.
  • LLM tends to generate extensive or none comments, revise the comments and make sure they are concise and helpful.
  • It's absolutely not acceptable to generate the entire PR summary by LLM. To communicate with other human, use words from a human.
  • The only acceptable exception is to fix grammar issues if you are not a native English speaker.
  • The essence here is to keep Human in the loop

You can even feed the policy above to your "copilot" to let it adjust the style for you. :P

Project details


Release history Release notifications | RSS feed

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-0.15.0.tar.gz (196.4 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-0.15.0-cp314-cp314t-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14tWindows ARM64

curl_cffi-0.15.0-cp314-cp314t-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

curl_cffi-0.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

curl_cffi-0.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

curl_cffi-0.15.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

curl_cffi-0.15.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

curl_cffi-0.15.0-cp314-cp314t-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

curl_cffi-0.15.0-cp314-cp314t-macosx_10_15_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

curl_cffi-0.15.0-cp313-abi3-android_24_arm64_v8a.whl (7.2 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13+

curl_cffi-0.15.0-cp310-abi3-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10+Windows ARM64

curl_cffi-0.15.0-cp310-abi3-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10+Windows x86-64

curl_cffi-0.15.0-cp310-abi3-musllinux_1_2_x86_64.whl (11.9 MB view details)

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

curl_cffi-0.15.0-cp310-abi3-musllinux_1_2_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

curl_cffi-0.15.0-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (10.3 MB view details)

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

curl_cffi-0.15.0-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (10.5 MB view details)

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

curl_cffi-0.15.0-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.1 MB view details)

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

curl_cffi-0.15.0-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl (10.2 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ i686

curl_cffi-0.15.0-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

curl_cffi-0.15.0-cp310-abi3-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

curl_cffi-0.15.0-cp310-abi3-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10+macOS 10.9+ x86-64

File details

Details for the file curl_cffi-0.15.0.tar.gz.

File metadata

  • Download URL: curl_cffi-0.15.0.tar.gz
  • Upload date:
  • Size: 196.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for curl_cffi-0.15.0.tar.gz
Algorithm Hash digest
SHA256 ea0c67652bf6893d34ee0f82c944f37e488f6147e9421bef1771cc6545b02ded
MD5 108ff8b07bacb0c292471f31025b4c7b
BLAKE2b-256 485b89fcfebd3e5e85134147ac99e9f2b2271165fd4d71984fc65da5f17819b7

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0b6c0543b993996670e9e4b78e305a2d60809d5681903ffb5568e21a387434d3
MD5 05134f5f924fe2b8dfef087394ba5ea1
BLAKE2b-256 598c36bbe06d66fa2b765e4a07199f643a59a9cd1a754207a96335402a9520f4

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b624c7ce087bfda967a013ed0a64702a525444e5b6e97d23534d567ccc6525aa
MD5 2530f2cf2dec23cafff31687b3168b7e
BLAKE2b-256 5aff4723d92f08259c707a974aba27a08d0a822b9555e35ca581bf18d055a364

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 408d6f14e346841cd889c2e0962832bb235ba3b6749ebf609f347f747da5e60f
MD5 73c45df562c29b632c8a493a843e39c7
BLAKE2b-256 531b304b253a45ab28691c8c5e8cca1e6cbb9cf8e46dfceae4648dd536f75e73

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 829cc357061ecb99cc2d406301f609a039e05665322f5c025ec67c38b0dc49ce
MD5 d4151f4d1c53fb8628e1e2e97cdc7c80
BLAKE2b-256 5f96fff2fcbd924ef4042e0d67379f751a8a4e3186a91e75e35a4cf218b306ee

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7b7a92767a888ee90147e18964b396d8435ff42737030d6fb00824ffd6094805
MD5 e23cfc5bb497a4d8af2261c9a9db8ac1
BLAKE2b-256 7f0b9b8037113c93f4c5323096163471fa7c35c7676c3f608eeaf1287cd99d58

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 08c799b89740b9bc49c09fbc3d5907f13ac1f845ca52620507ef9466d4639dd5
MD5 ade2b081cbbc541a3b4d156405840aae
BLAKE2b-256 e85c643d65c7fc9acd742876aa55c2d7823c438cb7665810acd2e66c9976c4d9

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e63539d0d839d0a8c5eacf86229bc68c57803547f35e0db7ee0986328b478c3
MD5 1299302a42720f211b24e205fd28b39d
BLAKE2b-256 078ff4f83cd303bef7e8f1749512e5dd157e7e5d08b0a36c8211f9640a2757bf

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 967ad7355bd8e9586f8c2d02eaa99953747549e7ea4a9b25cd53353e6b67fe6d
MD5 40f4099c7a2f045eaf57cbcea1464ada
BLAKE2b-256 1156132225cb3491d07cc6adcce5fe395e059bde87c68cff1ef87a31c88c7819

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp313-abi3-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp313-abi3-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 4682dc38d4336e0eb0b185374db90a760efde63cbea994b4e63f3521d44c4c92
MD5 66ff08c87034ed9aa7de083e0ec99f80
BLAKE2b-256 196ac24df8a4fc22fa84070dcd94abeba43c15e08cc09e35869565c0bad196fd

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-win_arm64.whl.

File metadata

  • Download URL: curl_cffi-0.15.0-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 a6d57f8389273a3a1f94370473c74897467bcc36af0a17336989780c507fa43d
MD5 76f967705249f822421b0e49123d6d26
BLAKE2b-256 3d39dfd54f2240d3a9b96d77bacc62b97813b35e2aa8ecf5cd5013c683f1ba96

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: curl_cffi-0.15.0-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 5a0c1896a0d5a5ac1eb89cd24b008d2b718dd1df6fd2f75451b59ca66e49e572
MD5 124856e1f2aec9fdb6c88ff11ad800b5
BLAKE2b-256 d88c2abf99a38d6340d66cf0557e0c750ef3f8883dfc5d450087e01c85861343

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1977e1e12cfb5c11352cbb74acef1bed24eb7d226dab61ca57c168c21acd4d61
MD5 0a82c17a3d6c8e2ec9da4edb0239ebd6
BLAKE2b-256 1d0156aeb055d962da87a1be0d74c6c644e251c7e88129b5471dc44ac724e678

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41f80170ba844009273b2660da1964ec31e99e5719d16b3422ada87177e32e13
MD5 c234f623e329476454ca92afc47d271f
BLAKE2b-256 28428ef236b22a6c23d096c85a1dc507efe37bfdfc7a2f8a4b34efb590197369

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aa1323950224db24f4c510d010b3affa02196ca853fb424191fa917a513d3f4b
MD5 e26d25c97d60ed061ffe5a08607f0ab1
BLAKE2b-256 5b841e101c1acb1ea2f0b4992f5c3024f596d8e21db0d53540b9d583f673c4e7

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9e5e69eee735f659287e2c84444319d68a1fa68dd37abf228943a4074864283a
MD5 e9fd77f33840ddef8d79583861f28591
BLAKE2b-256 ea0d78edcc4f71934225db99df68197a107386d59080742fc7bf6bb4d007924f

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2b6c847d86283b07ae69bb72c82eb8a59242277142aa35b89850f89e792a02fc
MD5 72d5c4bac759fcd46487bf06a86afbd7
BLAKE2b-256 5c12c70b835487ace3b9ba1502631912e3440082b8ae3a162f60b59cb0b6444d

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 838e48212447d9c81364b04707a5c861daf08f8320f9ecb3406a8919d1d5c3b3
MD5 18e0daf3ebcf34b36c0d905f21b7d70c
BLAKE2b-256 b51d6d10dded5ce3fd8157e558ebd97d09e551b77a62cdc1c31e93d0a633cee5

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 582e570aa2586b96ed47cf4a17586b9a3c462cbe43f780487c3dc245c6ef1527
MD5 c2be227399601d3d90baaf82943479d4
BLAKE2b-256 2ab39d2f1057749a1b07ba1989db3c1503ce8bed998310bae9aea2c43aa64f20

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a25620d9bf989c9c029a7d1642999c4c265abb0bad811deb2f77b0b5b2b12e5b
MD5 148fefd36104edd78fc172dba55e94e4
BLAKE2b-256 832d3915e238579b3c5a92cead5c79130c3b8d20caaba7616cc4d894650e1d6b

See more details on using hashes here.

File details

Details for the file curl_cffi-0.15.0-cp310-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for curl_cffi-0.15.0-cp310-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bda66404010e9ed743b1b83c20c86f24fe21a9a6873e17479d6e67e29d8ded28
MD5 6389cfb24d306e85fc29dc02a81a5db9
BLAKE2b-256 5e4254ddd442c795f30ce5dd4e49f87ce77505958d3777cd96a91567a3975d2a

See more details on using hashes here.

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