Skip to main content
handle = aiocurl.Curl()
handle.setopt(aiocurl.URL, 'https://example.com')

await handle.perform()

How?

Using libcurl's socket interface to let asyncio's event loop do all the work of waiting for I/O and scheduling of timeouts.

multi_socket supports multiple parallel transfers — all done in the same single thread — and have been used to run several tens of thousands of transfers in a single application. It is usually the API that makes the most sense if you do a large number (>100 or so) of parallel transfers.

This setup allows clients to scale up the number of simultaneous transfers much higher than with other systems, and still maintain good performance. The "regular" APIs otherwise waste far too much time scanning through lists of all the sockets.

More examples?

Awaiting multiple transfers

Use any of asyncio's functions:

await asyncio.gather(
    handle1.perform(),
    handle2.perform(),
)

Even better:

multi = aiocurl.CurlMulti()

await asyncio.gather(
    multi.perform(handle1),
    multi.perform(handle2),
)

Advantages of using a multi handle:

  • connection reuse
  • multiplexing
  • shared SSL session and DNS cache

Pausing and resuming a transfer

Simply use the existing pause method:

handle.pause(aiocurl.PAUSE_ALL)

And to resume:

handle.pause(aiocurl.PAUSE_CONT)

For more pause options see libcurl's documention.

Stopping a tranfer

The opposite of perform:

handle.stop()

And if the transfer is performed by a multi handle:

multi.stop(handle)

A stopped perform will return None instead of the finished handle:

if await handle.perform():
    print('finished')
else:
    print('stopped')

Cancelling a transfer

This is just like stop(), except the corresponding perform() coroutine will be cancelled instead:

try:
    await handle.perform()
except asyncio.CancelledError:
    print('cancelled')

Dependencies

  1. PycURL 7.43.0.4 or above. It has essential fixes that make event-driven transfers work. Older releases fail to relay libcurl's event messages.
  2. (optional) Additional PycURL event-related fixes that make pausing and resuming of transfers work.

License

aiocurl - asyncio extension of PycURL
Copyright (C) 2021  fsbs

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

Release files for aiocurl 0.0.3.post1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aiocurl 0.0.3.post1
File Size Uploaded
aiocurl-0.0.3.post1.tar.gz 16.0 kB Details

Release files / aiocurl-0.0.3.post1.tar.gz

Download URL aiocurl-0.0.3.post1.tar.gz
Size 16.0 kB
Tags Source
SHA-256 checksum
How to use checksums
c94549abbd871b245993599badf39b8edcfe13d80847cfaad7a32220e9f0efab
BLAKE2b-256 checksum
How to use checksums
6c040ed92e4e52e4701cbe4fd41ff1d11be4bc435a786bae63a93269b962886d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release history Release notifications | RSS feed

This release

0.0.3.post1 This release

1 release file

0.0.3

1 release file

0.0.2

1 release file

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page