Links tagged “python3”
9 links, newest first.
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.
github.com
Migrating to Python 3 with pleasure A short guide on features of Python 3 for data scientists Python became a mainstream language for machine learning and other scientific fields that heavily operate with data; it boasts various deep learning frameworks and well-established set of tools for data pro…
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…
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.
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-…







