Skip to main content

Compatibility API between asyncio/Twisted/Trollius

Project description

txaio
=====

| |Version| |Downloads| |Build Status| |Coverage| |Docs|

--------------

**txaio** is a helper library for writing code that runs unmodified on
both `Twisted <https://twistedmatrix.com/>`__ and `asyncio <https://docs.python.org/3/library/asyncio.html>`__ / `Trollius <http://trollius.readthedocs.org/en/latest/index.html>`__.

This is like `six <http://pythonhosted.org/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.6+ and PyPy 2, on top of Twisted or asyncio. Specifically, **txaio** is tested on the following platforms:

* CPython 2.6 on Twisted 12.1, 13.2, 15.4 and Trollius 2.0
* CPython 2.7 on Twisted 12.1, 13.2, 15.4, trunk and Trollius 2.0
* CPython 3.3 on Twisted 15.4, trunk and Trollius 2.0
* CPython 3.4 on Twisted 15.4, trunk and asyncio (stdlib)
* PyPy 2.5 on Twisted 12.1, 13.2, 15.4, trunk and 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:

.. sourcecode:: python

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"))


.. toctree::


.. |Version| image:: https://img.shields.io/pypi/v/txaio.svg
:target: https://pypi-hypernode.com/pypi/txaio

.. |Downloads| image:: https://img.shields.io/pypi/dm/txaio.svg
:target: https://pypi-hypernode.com/pypi/txaio

.. |GitHub Stars| image:: https://img.shields.io/github/stars/tavendo/txaio.svg?style=social&label=Star
:target: https://github.com/tavendo/txaio

.. |Master Branch| image:: https://img.shields.io/badge/branch-master-orange.svg
:target: https://travis-ci.org/tavendo/txaio.svg?branch=master

.. |Build Status| image:: https://travis-ci.org/tavendo/txaio.svg?branch=master
:target: https://travis-ci.org/tavendo/txaio

.. |Coverage| image:: https://img.shields.io/codecov/c/github/tavendo/txaio/master.svg
:target: https://codecov.io/github/tavendo/txaio

.. |Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat
:target: http://txaio.readthedocs.org/en/latest/

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

txaio-2.0.3.tar.gz (31.7 kB view details)

Uploaded Source

File details

Details for the file txaio-2.0.3.tar.gz.

File metadata

  • Download URL: txaio-2.0.3.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for txaio-2.0.3.tar.gz
Algorithm Hash digest
SHA256 b6d73b2a975f950f338a6029fae5b24fb79c12ff038bc9bdcb47203bdace5f19
MD5 ae20109c4d523d9704451d6d27602ccc
BLAKE2b-256 a43838d0b61f2aa529986c494da4b5fff7d250c2a9e7751a8faacb71f35be3c7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page