aiocurl icon indicating copy to clipboard operation
aiocurl copied to clipboard

asyncio extension of PycURL

Results 2 aiocurl issues
Sort by recently updated
recently updated
newest added

I quickly sketched out how to get rid of circular references ``` class CurlMulti: def __init__(self): self._multi = CurlMultiSync() self._scb = self._socket_callback self._tcb = self._timer_callback # Set a callback for...

Hi. When I initialize `aiocurl` and make a first request, the CPU as shown on `top` is 100% and the process' status is R (running). This does not happen during...