Links tagged “coroutines”
8 links, newest first.
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…
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.
github.com
title: A Web Crawler With asyncio Coroutines author: A.
emptysqua.re
At Open Source Bridge and PyGotham in 2015, I demonstrated that you can code a Python 3 async framework in about a half hour.
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-…






