Links tagged “asyncio”
19 links, newest first.
github.com
AIORMQ aiormq is a pure python AMQP client library.
vorpus.org
Every concurrency API needs a way to run code concurrently.
vorpus.org
I've recently been exploring the exciting new world of asynchronous I/O libraries in Python 3 – specifically asyncio and curio.
pawelmhm.github.io
In this post I’d like to test limits of python aiohttp and check its performance in terms of requests per minute.
pythonsheets.com
import asyncio import socket loop = asyncio.geteventloop() sock = socket.socket(socket.AFINET, socket.SOCKDGRAM, 0) sock.setsockopt(socket.SOLSOCKET, socket.SOREUSEADDR, 1) sock.setblocking(False) host = 'localhost' port = 3553 sock.bind((host, port)) def recvfrom(loop, sock, nbytes, fut=None, regis…
blog.kgriffs.com
Five Guys sells awesome burgers and fries.
github.com
asyncpg -- A fast PostgreSQL Database Client Library for Python/asyncio asyncpg is a database interface library designed specifically for PostgreSQL and Python/asyncio.
glyph.twistedmatrix.com
Lots of folks are very excited about the Tulip project, recently released as the asyncio standard library module in Python 3.4.
uvloop.readthedocs.io
uvloop uvloop is a fast, drop-in replacement of the built-in asyncio event loop.
docs.python.org
Source code: Lib/concurrent/futures/thread.py and Lib/concurrent/futures/process.py The concurrent.futures module provides a high-level interface for asynchronously executing callables.
snarky.ca
Being a core developer of Python has made me want to understand how the language generally works.
ntoll.org
Asynchronous Python Monday 28th April, 2014 (12:30PM) Python version 3.4 was recently released.
youtube.com
David Beazley builds Python concurrency up from primitives, live on stage at PyCon 2015, ending at asyncio.
python.org
PEP 0492 -- Coroutines with async and await syntax PEP: 492 Title: Coroutines with async and await syntax Author: Yury Selivanov <yury at magic.io> Discussions-To: < python-dev at python.org > Status: Final Type: Standards Track Created: 09-Apr-2015 Python-Version: 3.5 Post-History: 17-Apr-2015, 21-…

















