Coroutine scheduler for Python 3.5's await syntax
Project description
Asynker (IPA: /eɪˈsɪŋkɜːn/) is pretty much the least amount of code you need to use the “await” syntax. Typically packages like asyncio or curio implement two concepts at once: a scheduler and an event loop. The scheduler is a piece of code that decides what to run next and then runs it. The event loop is a piece of code that tells the scheduler what it can run.
Asynker only provides the scheduling part. This generally only makes sense if you are using something else as the event loop, e.g. something callback-based. Asynker allows you to use a callback-based system and easily convert it into a coroutine/await-based system.
The Future class used in Asynker is unrelated to any of the various Future classes found in the Python standard library (for now, anyway).
Features
Does over 900000 yields per second [citation needed]
The API is like asyncio but different enough to probably introduce interesting behaviours for study in your code
If all you wanted was to use “await” in your code without loading 500 kB of code, then this is for you
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file asynker-0.8.tar.gz
.
File metadata
- Download URL: asynker-0.8.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d506ab340a79be8058318636c54c90e02a827f3a269a77b11e78fcf6a662810 |
|
MD5 | f6d6e13cb71d42aa5ab5e4420696ff3a |
|
BLAKE2b-256 | ef1cb77c71212a0d5f4ce752e07633a677aa46914b15ff43648ac35f194dbeac |