/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

hynek.me
| | arunrocks.com
3.5 parsecs away

Travel
| | A blog by Arun Ravindran, author and speaker, about Python, Django and other curious things.
| | www.integralist.co.uk
2.1 parsecs away

Travel
| | This is a quick guide to Python's asyncio module and is based on Python version 3.8. Introduction Why focus on asyncio? A quick asyncio summary A quick concurrent.futures summary Green Threads? Event Loop Awaitables Coroutines Tasks Futures Running an asyncio program Running Async Code in the REPL Use another Event Loop Concurrent Functions Deprecated Functions Examples gather wait wait_for as_completed create_task Callbacks Pools Executors asyncio.Future vs concurrent.futures.Future asyncio.wrap_future ...
| | www.curiousefficiency.org
3.5 parsecs away

Travel
| | One of the recurring questions with asyncio is "How do I execute one or two operations asynchronously in an otherwise synchronous application?" Say, for example, I have the following code: >>> import
| | blog.hmpl-lang.dev
14.6 parsecs away

Travel
| In this short article I would like to consider working with asynchrony in HMPL. By default, in order to get a response from the server after an unspecified time, you need to specify a callback function in HMPLRequestInit. The key will be get. In the code, it looks like this:...