Compatibility API between asyncio/Twisted/Trollius
Project description
txaio is a helper library for writing code that runs unmodified on both Twisted and asyncio / Trollius.
This is like six, but for wrapping over differences between Twisted and asyncio so one can write code that runs unmodified on both (aka source code compatibility). In other words: your users can choose if they want asyncio or Twisted as a dependency.
Note that, with this approach, user code runs under the native event loop of either Twisted or asyncio. This is different from attaching either one’s event loop to the other using some event loop adapter.
Platform support
txaio runs on CPython 2.7/3.3+ and PyPy 2, on top of Twisted or asyncio. Specifically, txaio is tested on the following platforms:
CPython 2.7 on Twisted 12.1, 13.2, 15.4, 16.5, trunk and on Trollius 2.0
CPython 3.3 on Twisted 15.4, 16.5, trunk and on Trollius 2.0
CPython 3.4 on Twisted 15.4, 16.5, trunk and on asyncio (stdlib)
CPython 3.5 on Twisted 15.4, 16.5, trunk and on asyncio (stdlib)
PyPy 2 on Twisted 12.1, 13.2, 15.4, 16.5, trunk and on Trollius 2.0
How it works
Instead of directly importing, instantiating and using Deferred (for Twisted) or Future (for asyncio) objects, txaio provides helper-functions to do that for you, as well as associated things like adding callbacks or errbacks.
This obviously changes the style of your code, but then you can choose at runtime (or import time) which underlying event-loop to use. This means you can write one code-base that can run on Twisted or asyncio (without a Twisted dependency) as you or your users see fit.
Code like the following can then run on either system:
import txaio
txaio.use_twisted() # or .use_asyncio()
f0 = txaio.create_future()
f1 = txaio.as_future(some_func, 1, 2, key='word')
txaio.add_callbacks(f0, callback, errback)
txaio.add_callbacks(f1, callback, errback)
# ...
txaio.resolve(f0, "value")
txaio.reject(f1, RuntimeError("it failed"))
Please refer to the documentation for description and usage of the library features.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for txaio-2.8.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68e2dcbb19485cd6f4d99590edb2d5cfc02993700cd9689735d3b4bd1a113646 |
|
MD5 | 2963fc5e9c8fcdcf374f31776d8266cc |
|
BLAKE2b-256 | 38454429257344e03555e8b51fe4de64e90f9261948e3f4734d00ddf553a08dc |