RETIRED, further work has moved to Debian project infrastructure
Go to file
Tobias Oberstein ffcea49c03 Merge pull request #112 from oberstet/master
rel 2.8.1
2017-07-21 13:24:00 +02:00
docs rel 2.8.1 2017-07-21 10:05:33 +02:00
examples example of multiple loops 2017-04-29 00:49:42 -06:00
test Removed the test for the chained callback feature 2017-05-08 21:20:01 +03:00
txaio rel 2.8.1 2017-07-21 10:05:33 +02:00
.gitignore ignore spelling build stuff 2015-09-25 16:38:24 +02:00
.travis.yml Enabled Travis testing on Python 3.5 & 3.6 2017-05-09 13:42:23 +03:00
LICENSE copyrights transferred from Tavendo to Crossbar.io Technologies 2016-11-06 20:14:07 +01:00
MANIFEST.in fix README.rst and docs/* paths in MANIFEST 2015-10-08 09:44:57 -06:00
Makefile fix makefile 2017-02-25 11:17:32 +01:00
README.rst add sleep helper; some cosmetics 2017-02-09 14:47:24 +01:00
setup.cfg create wheel, interact with pypi via twine, bump version 2016-04-09 23:37:37 +02:00
setup.py improve packaging metadata, always incl LICENSE, fixes #94 2017-03-29 09:45:57 +02:00
tox.ini wip 2017-01-15 12:06:01 +01:00

README.rst

txaio

Version Build Status Coverage Docs

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.