cycurl


Namecycurl JSON
Version 0.5.10 PyPI version JSON
download
home_pagehttps://github.com/synodriver/cycurl
SummaryUltra fast python binding for curl-impersonate via cython
upload_time2023-12-29 13:20:59
maintainer
docs_urlNone
authorsynodriver
requires_python>=3.6
licenseMIT License Copyright (c) 2018 multippt Copyright (c) 2022 Yifei Kong Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # curl_cffi

Python binding for [curl-impersonate](https://github.com/lwthiker/curl-impersonate)
via [cffi](https://cffi.readthedocs.io/en/latest/).

[Documentation](https://curl-cffi.readthedocs.io) | [中文 README](https://github.com/yifeikong/curl_cffi/blob/master/README-zh.md) | [Discuss on Telegram](https://t.me/+lL9n33eZp480MGM1)

Unlike other pure python http clients like `httpx` or `requests`, `curl_cffi` can
impersonate browsers' TLS signatures or JA3 fingerprints. If you are blocked by some
website for no obvious reason, you can give this package a try.

## Features

- Supports JA3/TLS and http2 fingerprints impersonation.
- Much faster than requests/httpx, on par with aiohttp/pycurl, see [benchmarks](https://github.com/yifeikong/curl_cffi/tree/master/benchmark).
- Mimics 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.

|library|requests|aiohttp|httpx|pycurl|curl_cffi|
|---|---|---|---|---|---|
|http2|❌|❌|✅|✅|✅|
|sync|✅|❌|✅|✅|✅|
|async|❌|✅|✅|❌|✅|
|fingerprints|❌|❌|❌|❌|✅|
|speed|🐇|🐇🐇|🐇|🐇🐇|🐇🐇|

## Install

    pip install curl_cffi --upgrade

This should work on Linux(x86_64/aarch64), macOS(Intel/Apple Silicon) and Windows(amd64).
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 curl_cffi --pre

## Usage

### requests-like

```python
from cycurl import requests

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

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

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

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

### Sessions

```python
# sessions are supported
s = requests.Session()
# httpbin is a http test website
s.get("https://httpbin.org/cookies/set/foo/bar")
print(s.cookies)
# <Cookies[<Cookie foo=bar for httpbin.org />]>
r = s.get("https://httpbin.org/cookies")
print(r.json())
# {'cookies': {'foo': 'bar'}}
```

Supported impersonate versions, as supported by [curl-impersonate](https://github.com/lwthiker/curl-impersonate):

- chrome99
- chrome100
- chrome101
- chrome104
- chrome107
- chrome110
- chrome99_android
- edge99
- edge101
- safari15_3
- safari15_5

### asyncio

```python
from cycurl.requests import AsyncSession

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

More concurrency:

```python
import asyncio
from cycurl.requests import AsyncSession

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

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

### curl-like

Alternatively, you can use the low-level curl-like API:

```python
from cycurl import Curl, CurlOpt
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](https://curl-cffi.readthedocs.io) for more details. 

If you are using scrapy, check out this middleware: [tieyongjie/scrapy-fingerprint](https://github.com/tieyongjie/scrapy-fingerprint)

## Acknowledgement

- Originally forked from [multippt/python_curl_cffi](https://github.com/multippt/python_curl_cffi), which is under the MIT license.
- Headers/Cookies files are copied from [httpx](https://github.com/encode/httpx/blob/master/httpx/_models.py), which is under the BSD license.
- Asyncio support is inspired by Tornado's curl http client.

## Sponsor

<a href="https://buymeacoffee.com/yifei" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/synodriver/cycurl",
    "name": "cycurl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "synodriver",
    "author_email": "Yifei Kong <kong@yifei.me>",
    "download_url": "https://files.pythonhosted.org/packages/0f/ff/760b0ada21e475fe4890475a6428e86122176c2140c73d07f435c9c65deb/cycurl-0.5.10.tar.gz",
    "platform": null,
    "description": "# curl_cffi\n\nPython binding for [curl-impersonate](https://github.com/lwthiker/curl-impersonate)\nvia [cffi](https://cffi.readthedocs.io/en/latest/).\n\n[Documentation](https://curl-cffi.readthedocs.io) | [\u4e2d\u6587 README](https://github.com/yifeikong/curl_cffi/blob/master/README-zh.md) | [Discuss on Telegram](https://t.me/+lL9n33eZp480MGM1)\n\nUnlike other pure python http clients like `httpx` or `requests`, `curl_cffi` can\nimpersonate browsers' TLS signatures or JA3 fingerprints. If you are blocked by some\nwebsite for no obvious reason, you can give this package a try.\n\n## Features\n\n- Supports JA3/TLS and http2 fingerprints impersonation.\n- Much faster than requests/httpx, on par with aiohttp/pycurl, see [benchmarks](https://github.com/yifeikong/curl_cffi/tree/master/benchmark).\n- Mimics requests API, no need to learn another one.\n- Pre-compiled, so you don't have to compile on your machine.\n- Supports `asyncio` with proxy rotation on each request.\n- Supports http 2.0, which requests does not.\n\n|library|requests|aiohttp|httpx|pycurl|curl_cffi|\n|---|---|---|---|---|---|\n|http2|\u274c|\u274c|\u2705|\u2705|\u2705|\n|sync|\u2705|\u274c|\u2705|\u2705|\u2705|\n|async|\u274c|\u2705|\u2705|\u274c|\u2705|\n|fingerprints|\u274c|\u274c|\u274c|\u274c|\u2705|\n|speed|\ud83d\udc07|\ud83d\udc07\ud83d\udc07|\ud83d\udc07|\ud83d\udc07\ud83d\udc07|\ud83d\udc07\ud83d\udc07|\n\n## Install\n\n    pip install curl_cffi --upgrade\n\nThis should work on Linux(x86_64/aarch64), macOS(Intel/Apple Silicon) and Windows(amd64).\nIf it does not work on you platform, you may need to compile and install `curl-impersonate`\nfirst and set some environment variables like `LD_LIBRARY_PATH`.\n\nTo install beta releases:\n\n    pip install curl_cffi --pre\n\n## Usage\n\n### requests-like\n\n```python\nfrom cycurl import requests\n\n# Notice the impersonate parameter\nr = requests.get(\"https://tls.browserleaks.com/json\", impersonate=\"chrome110\")\n\nprint(r.json())\n# output: {..., \"ja3n_hash\": \"aa56c057ad164ec4fdcb7a5a283be9fc\", ...}\n# the js3n fingerprint should be the same as target browser\n\n# http/socks proxies are supported\nproxies = {\"https\": \"http://localhost:3128\"}\nr = requests.get(\"https://tls.browserleaks.com/json\", impersonate=\"chrome110\", proxies=proxies)\n\nproxies = {\"https\": \"socks://localhost:3128\"}\nr = requests.get(\"https://tls.browserleaks.com/json\", impersonate=\"chrome110\", proxies=proxies)\n```\n\n### Sessions\n\n```python\n# sessions are supported\ns = requests.Session()\n# httpbin is a http test website\ns.get(\"https://httpbin.org/cookies/set/foo/bar\")\nprint(s.cookies)\n# <Cookies[<Cookie foo=bar for httpbin.org />]>\nr = s.get(\"https://httpbin.org/cookies\")\nprint(r.json())\n# {'cookies': {'foo': 'bar'}}\n```\n\nSupported impersonate versions, as supported by [curl-impersonate](https://github.com/lwthiker/curl-impersonate):\n\n- chrome99\n- chrome100\n- chrome101\n- chrome104\n- chrome107\n- chrome110\n- chrome99_android\n- edge99\n- edge101\n- safari15_3\n- safari15_5\n\n### asyncio\n\n```python\nfrom cycurl.requests import AsyncSession\n\nasync with AsyncSession() as s:\n    r = await s.get(\"https://example.com\")\n```\n\nMore concurrency:\n\n```python\nimport asyncio\nfrom cycurl.requests import AsyncSession\n\nurls = [\n    \"https://googel.com/\",\n    \"https://facebook.com/\",\n    \"https://twitter.com/\",\n]\n\nasync with AsyncSession() as s:\n    tasks = []\n    for url in urls:\n        task = s.get(\"https://example.com\")\n        tasks.append(task)\n    results = await asyncio.gather(*tasks)\n```\n\n### curl-like\n\nAlternatively, you can use the low-level curl-like API:\n\n```python\nfrom cycurl import Curl, CurlOpt\nfrom io import BytesIO\n\nbuffer = BytesIO()\nc = Curl()\nc.setopt(CURLOPT_URL, b'https://tls.browserleaks.com/json')\nc.setopt(CURLOPT_WRITEDATA, buffer)\n\nc.impersonate(\"chrome110\")\n\nc.perform()\nc.close()\nbody = buffer.getvalue()\nprint(body.decode())\n```\n\nSee the [docs](https://curl-cffi.readthedocs.io) for more details. \n\nIf you are using scrapy, check out this middleware: [tieyongjie/scrapy-fingerprint](https://github.com/tieyongjie/scrapy-fingerprint)\n\n## Acknowledgement\n\n- Originally forked from [multippt/python_curl_cffi](https://github.com/multippt/python_curl_cffi), which is under the MIT license.\n- Headers/Cookies files are copied from [httpx](https://github.com/encode/httpx/blob/master/httpx/_models.py), which is under the BSD license.\n- Asyncio support is inspired by Tornado's curl http client.\n\n## Sponsor\n\n<a href=\"https://buymeacoffee.com/yifei\" target=\"_blank\"><img src=\"https://cdn.buymeacoffee.com/buttons/default-orange.png\" alt=\"Buy Me A Coffee\" height=\"41\" width=\"174\"></a>\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2018 multippt Copyright (c) 2022 Yifei Kong  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Ultra fast python binding for curl-impersonate via cython",
    "version": "0.5.10",
    "project_urls": {
        "Homepage": "https://github.com/synodriver/cycurl",
        "repository": "https://github.com/synodriver/cycurl"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b17eff3dd765bb890b89185c925c2c94250128b8b608ee81f3ffc3376b808460",
                "md5": "873b517a9112205dcdbec2cc513a1c52",
                "sha256": "3225cde7f3d440493da9e9e2a2822781590f7e4f79f77eeedfa5ab68df11441a"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "873b517a9112205dcdbec2cc513a1c52",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 781163,
            "upload_time": "2023-12-29T13:21:29",
            "upload_time_iso_8601": "2023-12-29T13:21:29.360966Z",
            "url": "https://files.pythonhosted.org/packages/b1/7e/ff3dd765bb890b89185c925c2c94250128b8b608ee81f3ffc3376b808460/cycurl-0.5.10-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26935bd5a1e82900ac8cb6d7afe0f3b9f69f8d9f9c9843843243d130d29d7511",
                "md5": "eafb298bd687203033f15cd67661f9df",
                "sha256": "257613dae9e3f1b3ce1f1d156a14b207902c7b79f116c4ae0186215c82842b94"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eafb298bd687203033f15cd67661f9df",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 831231,
            "upload_time": "2023-12-29T13:20:58",
            "upload_time_iso_8601": "2023-12-29T13:20:58.388442Z",
            "url": "https://files.pythonhosted.org/packages/26/93/5bd5a1e82900ac8cb6d7afe0f3b9f69f8d9f9c9843843243d130d29d7511/cycurl-0.5.10-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7119d3f7f9da36b1dec2d2cf2947bdabaf96017895508a8ac03b14f6094b3456",
                "md5": "f28168b3e195e4e2d2a2e8b9f5b98f3b",
                "sha256": "85b1e72affdd31817d4217015f0bbc406c3b2839135b33bbc3747e6c196a6faf"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f28168b3e195e4e2d2a2e8b9f5b98f3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2851307,
            "upload_time": "2023-12-29T13:23:34",
            "upload_time_iso_8601": "2023-12-29T13:23:34.536296Z",
            "url": "https://files.pythonhosted.org/packages/71/19/d3f7f9da36b1dec2d2cf2947bdabaf96017895508a8ac03b14f6094b3456/cycurl-0.5.10-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06cb227679a52c69fe50591fc83134d60c28372a1ad8b9ae46cf51039a9d4e65",
                "md5": "a39db939945342a807611dd0e162ce33",
                "sha256": "9672e8eb218d17d267ed799b9ff6e30392c1493f8dd8195d67673a88dc622c2a"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a39db939945342a807611dd0e162ce33",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 953044,
            "upload_time": "2023-12-29T13:22:04",
            "upload_time_iso_8601": "2023-12-29T13:22:04.268068Z",
            "url": "https://files.pythonhosted.org/packages/06/cb/227679a52c69fe50591fc83134d60c28372a1ad8b9ae46cf51039a9d4e65/cycurl-0.5.10-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8de25c7cd74a84c16d990b15d369aae35235804d40b0a0a2ce3306ce0cb61ece",
                "md5": "4e2aa5f98cd048d646bb7f8a837115bf",
                "sha256": "0e43e0efc2826b1d350a21fc31eca4877815419579f5de3c5f37ab5be0a7fe01"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e2aa5f98cd048d646bb7f8a837115bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 830696,
            "upload_time": "2023-12-29T13:21:01",
            "upload_time_iso_8601": "2023-12-29T13:21:01.032493Z",
            "url": "https://files.pythonhosted.org/packages/8d/e2/5c7cd74a84c16d990b15d369aae35235804d40b0a0a2ce3306ce0cb61ece/cycurl-0.5.10-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c43f2704ad1e16b2f755653cff9a554a74ef2fe4c2d0d63f2a551699863609d",
                "md5": "7e72ef8753155f70f2eafdbf03dd40b3",
                "sha256": "9adf53dbda5069e1baf765c97d8c2b27b28860120a5d3d8ac995f5da589b3e10"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7e72ef8753155f70f2eafdbf03dd40b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2851449,
            "upload_time": "2023-12-29T13:21:51",
            "upload_time_iso_8601": "2023-12-29T13:21:51.178771Z",
            "url": "https://files.pythonhosted.org/packages/1c/43/f2704ad1e16b2f755653cff9a554a74ef2fe4c2d0d63f2a551699863609d/cycurl-0.5.10-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef2379c94e616d17e7fdfd513e7b8efa256328cf94236c0e62ba3d20e8e231c9",
                "md5": "a152f9f0e419e84bfbe855bd28c71d1a",
                "sha256": "ec6dec15e79ee0179ff6a0fb07bf4da304cd15990dbb38b217ed3a3a7e6e155f"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a152f9f0e419e84bfbe855bd28c71d1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 954533,
            "upload_time": "2023-12-29T13:21:48",
            "upload_time_iso_8601": "2023-12-29T13:21:48.566658Z",
            "url": "https://files.pythonhosted.org/packages/ef/23/79c94e616d17e7fdfd513e7b8efa256328cf94236c0e62ba3d20e8e231c9/cycurl-0.5.10-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52025cb6075a55fb8720379bd57f3c9231ac8a84b2c1f3a279a4250abe775c2b",
                "md5": "614a43858bef3f37be58334ab571c9e2",
                "sha256": "ec9653a0d483b8be1a45308ce1f4591ce6717f3b05b299aac57fc1b67fc7a318"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "614a43858bef3f37be58334ab571c9e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 816122,
            "upload_time": "2023-12-29T13:20:58",
            "upload_time_iso_8601": "2023-12-29T13:20:58.893345Z",
            "url": "https://files.pythonhosted.org/packages/52/02/5cb6075a55fb8720379bd57f3c9231ac8a84b2c1f3a279a4250abe775c2b/cycurl-0.5.10-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0459ab9b4bc2078d73ab04e55d3f92f4321b9514873838cb4ec9ba30331196e",
                "md5": "bbee30bc83ecd31ba19f659e3a3fa048",
                "sha256": "2f8f4c9f2cafde620cbbbbcfa12686d706b9dde199bc7a54f849a67c27f0d7bb"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bbee30bc83ecd31ba19f659e3a3fa048",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2850975,
            "upload_time": "2023-12-29T13:22:35",
            "upload_time_iso_8601": "2023-12-29T13:22:35.377117Z",
            "url": "https://files.pythonhosted.org/packages/b0/45/9ab9b4bc2078d73ab04e55d3f92f4321b9514873838cb4ec9ba30331196e/cycurl-0.5.10-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76a548ac538bd7f3b15e768dcb73f1de966b85c7d5df437cc3a78754b0e847a7",
                "md5": "1cd08153737a331d942439479dd61b69",
                "sha256": "0b1a7106e53c5d389058faf12a026348932d34054cc45e0758c790ecd76548dd"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1cd08153737a331d942439479dd61b69",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 781193,
            "upload_time": "2023-12-29T13:22:11",
            "upload_time_iso_8601": "2023-12-29T13:22:11.339159Z",
            "url": "https://files.pythonhosted.org/packages/76/a5/48ac538bd7f3b15e768dcb73f1de966b85c7d5df437cc3a78754b0e847a7/cycurl-0.5.10-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2b00c359cc5f608a5931bb56cbc15201cc9de462627869304b2492b4919cf67",
                "md5": "8f4de04415f58a221affa286137bea40",
                "sha256": "6b1289194636aa3272193f559de6462e4c0430c0230ac36e952faef40f2bbfa3"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp38-cp38-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f4de04415f58a221affa286137bea40",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 831502,
            "upload_time": "2023-12-29T13:20:56",
            "upload_time_iso_8601": "2023-12-29T13:20:56.435825Z",
            "url": "https://files.pythonhosted.org/packages/c2/b0/0c359cc5f608a5931bb56cbc15201cc9de462627869304b2492b4919cf67/cycurl-0.5.10-cp38-cp38-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90e160b2e36a04993e29a0e8b1cd10811cc3e3d09ea318249d499fa598d828f6",
                "md5": "04f00dbe418f7f691611e24a63969142",
                "sha256": "7e2a902128bc1fcaa0df84fd8695871f1a77470eec89df92a4d144676dc63306"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "04f00dbe418f7f691611e24a63969142",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2855981,
            "upload_time": "2023-12-29T13:24:12",
            "upload_time_iso_8601": "2023-12-29T13:24:12.857498Z",
            "url": "https://files.pythonhosted.org/packages/90/e1/60b2e36a04993e29a0e8b1cd10811cc3e3d09ea318249d499fa598d828f6/cycurl-0.5.10-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c23dddb45d1a8ce4ca006537eca54d3dd2e4a4fe49e64de85a0b8528635383e9",
                "md5": "ad8a7958e3f512ce2fc24bf8fe7a5e08",
                "sha256": "0e9da232fb8fa70fade03c25f5e2776896cc9fe59acbb2a12fd1f5210934ddbd"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad8a7958e3f512ce2fc24bf8fe7a5e08",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 781602,
            "upload_time": "2023-12-29T13:22:18",
            "upload_time_iso_8601": "2023-12-29T13:22:18.710551Z",
            "url": "https://files.pythonhosted.org/packages/c2/3d/ddb45d1a8ce4ca006537eca54d3dd2e4a4fe49e64de85a0b8528635383e9/cycurl-0.5.10-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26bc4b60cdf2e0018ee6c89bef1b5481cd05ccb7015472c474dfcd5862d5e094",
                "md5": "b12481a87ceadeb3adca99fd4cf32280",
                "sha256": "fb195a8499011b0f2d8a164f4bc3e28f34d1bc31d829c915eaf18d901524248b"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp39-cp39-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b12481a87ceadeb3adca99fd4cf32280",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 831474,
            "upload_time": "2023-12-29T13:21:00",
            "upload_time_iso_8601": "2023-12-29T13:21:00.193024Z",
            "url": "https://files.pythonhosted.org/packages/26/bc/4b60cdf2e0018ee6c89bef1b5481cd05ccb7015472c474dfcd5862d5e094/cycurl-0.5.10-cp39-cp39-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02eebaca7a1963eaeacc3997a1c010ebe6a0755d15210cd1999c359da5dfd53c",
                "md5": "1298157e361660046c09c43074a5cbd8",
                "sha256": "3872e32a617d0540011c51a9f11281c976622e1a8a8e832277b9f71eb191947b"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1298157e361660046c09c43074a5cbd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2851413,
            "upload_time": "2023-12-29T13:24:12",
            "upload_time_iso_8601": "2023-12-29T13:24:12.291134Z",
            "url": "https://files.pythonhosted.org/packages/02/ee/baca7a1963eaeacc3997a1c010ebe6a0755d15210cd1999c359da5dfd53c/cycurl-0.5.10-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fff760b0ada21e475fe4890475a6428e86122176c2140c73d07f435c9c65deb",
                "md5": "52407c5ef7ad95789d88882fbd853b9f",
                "sha256": "fc4569c47da71cea4744190fad6eecef17bb82a444d954c0afb0cf9b7576915f"
            },
            "downloads": -1,
            "filename": "cycurl-0.5.10.tar.gz",
            "has_sig": false,
            "md5_digest": "52407c5ef7ad95789d88882fbd853b9f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 63726193,
            "upload_time": "2023-12-29T13:20:59",
            "upload_time_iso_8601": "2023-12-29T13:20:59.314006Z",
            "url": "https://files.pythonhosted.org/packages/0f/ff/760b0ada21e475fe4890475a6428e86122176c2140c73d07f435c9c65deb/cycurl-0.5.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-29 13:20:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "synodriver",
    "github_project": "cycurl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cycurl"
}
        
Elapsed time: 0.26868s