Ultra fast python binding for curl-impersonate via cython, with impersonation support.
Project description
cycurl
Python binding for curl-impersonate fork via cython. For commercial support, visit impersonate.pro.
curl_cffi\cycurl is the most popular Python binding for curl. Unlike other pure
python http clients like httpx or requests, cycurl can impersonate
browsers' TLS/JA3 and HTTP/2 fingerprints. If you are blocked by some
website for no obvious reason, you can give cycurl a try.
Python 3.9 is the minimum supported version since v0.10.
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
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
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
asynciowith proxy rotation on each request. - Supports http 2.0 & 3.0, which requests does not.
- Supports websocket.
- MIT licensed.
| requests | aiohttp | httpx | pycurl | curl_cffi | cycurl | |
|---|---|---|---|---|---|---|
| http/2 | โ | โ | โ | โ | โ | โ |
| http/3 | โ | โ | โ | โ๏ธ1 | โ๏ธ2 | โ๏ธ2 |
| sync | โ | โ | โ | โ | โ | โ |
| async | โ | โ | โ | โ | โ | โ |
| websocket | โ | โ | โ | โ | โ | โ |
| fingerprints | โ | โ | โ | โ | โ | โ |
| speed | ๐ | ๐๐ | ๐ | ๐๐ | ๐๐ | ๐๐ |
Notes:
- For pycurl, you need an http/3 enabled libcurl to make it work, while curl_cffi packages libcurl-impersonate inside Python wheels.
- Since v0.11.4.
Install
pip install cycurl --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.
To install beta releases:
pip install cycurl --upgrade --pre
To install unstable version from GitHub:
git clone https://github.com/synodriver/cycurl/
cd cycurl
python setup.py bdist_wheel
On macOS, you may need to install the following dependencies:
brew install zstd nghttp2
Usage
cycurl comes with a low-level curl API and a high-level requests-like API.
requests-like
<<<<<<< HEAD v0.9:
from cycurl import requests
r = requests.get("https://tls.browserleaks.com/json", impersonate="chrome")
v0.10:
temp
import cycurl
# Notice the impersonate parameter
r = cycurl.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 `cycurl` updates,
# simply set impersonate="chrome" without specifying a version.
# Other similar values are: "safari" and "safari_ios"
r = cycurl.get("https://tls.browserleaks.com/json", 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 = cycurl.get("https://example.com", impersonate="realworld")
# To pin a specific version, use version numbers together.
r = cycurl.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 = cycurl.get("https://tls.browserleaks.com/json", ja3=..., akamai=...)
# http/socks proxies are supported
proxies = {"https": "http://localhost:3128"}
r = cycurl.get("https://tls.browserleaks.com/json", impersonate="chrome", proxies=proxies)
proxies = {"https": "socks://localhost:3128"}
r = cycurl.get("https://tls.browserleaks.com/json", impersonate="chrome", proxies=proxies)
Sessions
<<<<<<< HEAD v0.9:
from cycurl import requests
s = requests.Session()
v0.10:
=======
temp
s = cycurl.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
cycurl supports the same browser versions as supported by the fork of curl-impersonate:
Open source version of cycurl 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] | 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] | 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:
- Added in version
0.6.0. - Fixed in version
0.6.0, previous http2 fingerprints were not correct. - Added in version
0.7.0. - Added in version
0.8.0. - Added in version
0.9.0. - 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. - Added in version
0.10.0. - Added in version
0.11.0. - Since
0.11.0, the formatsafari184_iosis preferred oversafari18_4_ios, both are supported, but the latter is quite confusing and hard to parse. - Added in
0.12.0.
Asyncio
from cycurl import AsyncSession
async def main():
async with AsyncSession() as s:
r = await s.get("https://example.com")
More concurrency:
import asyncio
from cycurl 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 cycurl 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")
curl-like
Alternatively, you can use the low-level curl-like API:
from cycurl import Curl, CURLOPT_URL, CURLOPT_WRITEDATA
from io import BytesIO
buffer = BytesIO()
c = Curl()
c.setopt(CURLOPT_URL, b'https://tls.browserleaks.com/json')
c.setopt(CURLOPT_WRITEDATA, buffer)
c.impersonate("chrome110")
c.perform()
c.close()
body = buffer.getvalue()
print(body.decode())
See the docs for more details.
scrapy
If you are using scrapy, check out these middlewares:
For low-level APIs, Scrapy integration and other advanced topics, see the docs for more details.
Asyncio WebSockets
import asyncio
from cycurl import AsyncSession
async def main():
async with AsyncSession() as s:
ws = await s.ws_connect("wss://echo.websocket.org")
await asyncio.gather(*[ws.send_str("Hello, World!") for _ in range(10)])
async for message in ws:
print(message)
Ecosystem
- Integrating with Scrapy: divtiply/scrapy-curl-cffi, jxlil/scrapy-impersonate and tieyongjie/scrapy-fingerprint.
- Integrating with requests, httpx as adapter.
- Integrating with captcha resolvers: CapSolver, YesCaptcha. Please see the head area for promo code and link.
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!
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cycurl-0.13.0.tar.gz.
File metadata
- Download URL: cycurl-0.13.0.tar.gz
- Upload date:
- Size: 64.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ff2dd67ac3a2f742499b4cba82cde64293eb7a4072cad250fa056f49b73d926
|
|
| MD5 |
69b7507c3263a3d37ec4d3f173b1c81b
|
|
| BLAKE2b-256 |
8030539d34118725d305889b87779b99b08a1dff6c164d009daa133b4433e0bd
|
File details
Details for the file cycurl-0.13.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e16829d823f3c4a32c868f6ba16c6b83055ed0af409f28ed1a2995f08007876
|
|
| MD5 |
d81a9378fb3c008bfed075b51dbadae1
|
|
| BLAKE2b-256 |
96e4dd3abc4fde510cd4caf2b9f157b24ffcd56fe756464fcf8ff56277f14ec7
|
File details
Details for the file cycurl-0.13.0-cp313-cp313-manylinux2014_x86_64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp313-cp313-manylinux2014_x86_64.whl
- Upload date:
- Size: 9.5 MB
- Tags: CPython 3.13
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
964d282c7a28e15ba22603e6ca3973284915f62d727cd4102c02631b67e44e03
|
|
| MD5 |
423d75568dae02ac2d3b6c8001b9c6b1
|
|
| BLAKE2b-256 |
2be5f91120a624b5ea2835f097d8017848828f27f5af6d27f5c0ea2b6a61fe1d
|
File details
Details for the file cycurl-0.13.0-cp313-cp313-macosx_14_0_arm64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp313-cp313-macosx_14_0_arm64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.13, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9b6413ece3777d70f387efd864277bfca1740caf84fad11e0cecca882837518
|
|
| MD5 |
31b73aa865c6634c3d44660247a441ff
|
|
| BLAKE2b-256 |
05dbf7d3d35a57ee75744ceac5c9b9ee2a3cb173ab7425350fd98d034afbcfbf
|
File details
Details for the file cycurl-0.13.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
572b8b402fd2182b6504c3881295b286826ac44d628aa268b44e4c05fb96567b
|
|
| MD5 |
7c91bb53be2e9544e95fc41ec953a397
|
|
| BLAKE2b-256 |
4b1d63fe03cf5af907a1439b5f3cb54970728eec649a105972d737b1821e0d88
|
File details
Details for the file cycurl-0.13.0-cp312-cp312-manylinux2014_x86_64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp312-cp312-manylinux2014_x86_64.whl
- Upload date:
- Size: 9.5 MB
- Tags: CPython 3.12
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4efd626e431d625ce1026d53470e63b6e7731880e30c2ae163a5f6081f39dda
|
|
| MD5 |
e4096446cea48d7a8df4555977a3d9b9
|
|
| BLAKE2b-256 |
24f6f31f3f4ac5f17e57bdd3f3aa388e14867f6263f9bd1236c745a388b7b1eb
|
File details
Details for the file cycurl-0.13.0-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.12, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91f87e51411458caedaba5a3d1ca699893de96d8ce82bd9a1a6f8ecc44e4a403
|
|
| MD5 |
5551b922a0cede06b5d0230337446278
|
|
| BLAKE2b-256 |
bc54f50c6abede38a4b32bc9db51f7b9c5ab2d664067ebb84b2be98fe9924cd0
|
File details
Details for the file cycurl-0.13.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97e927f8b73854504960d38a306f444bd892117e6501cf7c380e163cc33cf4d9
|
|
| MD5 |
00e61cd2b24fcd16576195dc48052b37
|
|
| BLAKE2b-256 |
fc8f3c44f237a998900d6c7327ff5525f0b54720f2adfa0e8f4ff1ca1d498f7e
|
File details
Details for the file cycurl-0.13.0-cp311-cp311-manylinux2014_x86_64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp311-cp311-manylinux2014_x86_64.whl
- Upload date:
- Size: 9.5 MB
- Tags: CPython 3.11
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d18c469b3b310cb3899a1296338d138afa789bf5f72ecaaa7bce574aa22d2f3
|
|
| MD5 |
96097c45fe96054a268e98827ab32ff1
|
|
| BLAKE2b-256 |
b40ccea03f425e8f72d16859c08a3ca109fcae8aaaa76ed4db18deba6e5a8c98
|
File details
Details for the file cycurl-0.13.0-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
515f3a8da4e109c36dda6614ddcf9978615d04b533dd4358ebe625297b7db71d
|
|
| MD5 |
51cd79bffada339ee22849be6830a2c2
|
|
| BLAKE2b-256 |
bd30d3eaa44e4f012fafe2700a43d6a44e8ec0fd190abdaa1d6888b78c39e540
|
File details
Details for the file cycurl-0.13.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
749c3a4aa51f140be70d2a634ab8ab56ef9916c228639570a6eafe45a6be6f77
|
|
| MD5 |
2fdb6be0c5ce42435ac60e0693a54723
|
|
| BLAKE2b-256 |
1b7f29d9b32bf0cc655392d534e961a467e478ff1a609cfc0dcd25d4cc5a2e7a
|
File details
Details for the file cycurl-0.13.0-cp310-cp310-manylinux2014_x86_64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp310-cp310-manylinux2014_x86_64.whl
- Upload date:
- Size: 9.5 MB
- Tags: CPython 3.10
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78d4dad70213982711470998084f6b7576f2cec57b02fcb751840577d724dcf4
|
|
| MD5 |
d8f35d47625fad3c948d4019f097c597
|
|
| BLAKE2b-256 |
ed865b69fde0688db34b1792c806f98c8f2d09b764d71a18a6ca590210b006e8
|
File details
Details for the file cycurl-0.13.0-cp310-cp310-macosx_14_0_arm64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp310-cp310-macosx_14_0_arm64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.10, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4c51a74e09573ea1e0e07b00a4f5cddbc9fc5a78e519a56a60873b24b8de639
|
|
| MD5 |
261e619dfbe7088a9db317ac56117938
|
|
| BLAKE2b-256 |
86e755fbe73fd9a1380525a21f51342837d01c0a6556eb14722746015199f9dd
|
File details
Details for the file cycurl-0.13.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f23dc2c9320ee7f21efe77ebb3c46f5befc0924443336e0c0947ca9b2538e410
|
|
| MD5 |
85c1d545a6c0366bf1adc94b7938b17b
|
|
| BLAKE2b-256 |
0023a694088c01cf558d2ab83de1854aaa32c3f1c1c9f596af956ac90907d379
|
File details
Details for the file cycurl-0.13.0-cp39-cp39-manylinux2014_x86_64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp39-cp39-manylinux2014_x86_64.whl
- Upload date:
- Size: 9.5 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25cca00f9d68032ab2174154ab642125108d2002f5ae77e2d9d616501a1317a4
|
|
| MD5 |
7652bcfb8a6b4acb03153e7d58e2428e
|
|
| BLAKE2b-256 |
fe91c2d9641e29091df82d0a4791a85146293da30c72aa1bfe54117ee6c9b689
|
File details
Details for the file cycurl-0.13.0-cp39-cp39-macosx_14_0_arm64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp39-cp39-macosx_14_0_arm64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.9, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eedd9e59b7441f5b1fff37951bb4050aa38b540c38da8941f43ff70549f318d
|
|
| MD5 |
e00dd7cdd480bb793ae6c1622b9cc54a
|
|
| BLAKE2b-256 |
f71be9d73bd17d9e266ed1cbeedd0f933c49f4541fe0e81ee329fc653fedae9d
|
File details
Details for the file cycurl-0.13.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60adc6ac54c6fb9cf33368725396360fd68524c21592f63ed3bc892ff58aabd3
|
|
| MD5 |
33f9bd4106178d56e5129170f3af3246
|
|
| BLAKE2b-256 |
3383017474cd0db5494aca24ba048fc750356533af2d0643efc4d19a81a35fce
|
File details
Details for the file cycurl-0.13.0-cp38-cp38-manylinux2014_x86_64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp38-cp38-manylinux2014_x86_64.whl
- Upload date:
- Size: 9.5 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d23feaa2c9c3e30b23c99a2da93e039edf8cf7ea4d64212c6f237f5c57ef5aa7
|
|
| MD5 |
c8871dcf3a9370efea67acbfd684a815
|
|
| BLAKE2b-256 |
46c9e318abcb2e7f00aaa03c514a779406e25b44829a23373cd70b10f04d0d74
|
File details
Details for the file cycurl-0.13.0-cp38-cp38-macosx_14_0_arm64.whl.
File metadata
- Download URL: cycurl-0.13.0-cp38-cp38-macosx_14_0_arm64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.8, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82401482b4cfc563fd4ca5aea0da2a95267e07faff5d0995b6c8ee0148db7f8d
|
|
| MD5 |
99a68b55b164a1b31fa99c22e1ab59a4
|
|
| BLAKE2b-256 |
a1e29d16b3a4520b301e49d79e84a0349c29ad6cd2f1580f48b698ea7f88b85b
|