Links tagged “asynchronous”
5 links, newest first.
vorpus.org
I've recently been exploring the exciting new world of asynchronous I/O libraries in Python 3 – specifically asyncio and curio.
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…
techspot.zzzeek.org
As anticipated, let's get into where it's all going wrong, especially for database-related code.
txpostgres.readthedocs.io
© Copyright 2010-2012, Jan Urbański.
addyosmani.com
Tweet Modularity The Importance Of Decoupling Your Application When we say an application is modular, we generally mean it's composed of a set of highly decoupled, distinct pieces of functionality stored in modules.



