%define scl rh-python36 %{?scl:%scl_package %{name}} %{!?scl:%global pkg_name %{name}} %define name txaio %define version 2.9.0 %define unmangled_version 2.9.0 %define unmangled_version 2.9.0 %define release 1 Summary: Compatibility API between asyncio/Twisted/Trollius %{?scl:Requires: %{scl}-runtime} %{?scl:BuildRequires: %{scl}-runtime} Name: %{?scl_prefix}%{pkg_name} Version: %{version} Release: %{release} Source0: txaio-%{unmangled_version}.tar.gz License: MIT License Group: Development/Libraries BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-%{release}-buildroot Prefix: %{_prefix} BuildArch: noarch Vendor: Crossbar.io Technologies GmbH Packager: Martin Juhl Url: https://github.com/crossbario/txaio %description 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/3, on top of Twisted or asyncio. Specifically, **txaio** is tested on the following platforms: **Python 2:** * CPython 2.7 on Twisted 12.1, 13.2, 15.4, 16.5, trunk and on Trollius 2.0 * PyPy 2 on Twisted 12.1, 13.2, 15.4, 16.5, trunk and on Trollius 2.0 **Python 3:** * 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) * CPython 3.6 on Twisted 15.4, 16.5, trunk and on asyncio (stdlib) * PyPy 3 on Twisted 15.4, 16.5, trunk and on asyncio (stdlib) 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 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. .. |Version| image:: https://img.shields.io/pypi/v/txaio.svg :target: https://pypi.python.org/pypi/txaio .. |Build Status| image:: https://travis-ci.org/crossbario/txaio.svg?branch=master :target: https://travis-ci.org/crossbario/txaio .. |Coverage| image:: https://codecov.io/github/crossbario/txaio/coverage.svg?branch=master :target: https://codecov.io/github/crossbario/txaio .. |Docs| image:: https://readthedocs.org/projects/txaio/badge/?version=latest :target: https://txaio.readthedocs.io/en/latest/ %prep %{?scl:scl enable %{scl} - << \EOF} set -ex %setup -n txaio-%{unmangled_version} -n txaio-%{unmangled_version} %{?scl:EOF} %build %{?scl:scl enable %{scl} - << \EOF} set -ex python3 setup.py build %{?scl:EOF} %install %{?scl:scl enable %{scl} - << \EOF} set -ex python3 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES %{?scl:EOF} %clean %{?scl:scl enable %{scl} - << \EOF} set -ex rm -rf $RPM_BUILD_ROOT %{?scl:EOF} %files -f INSTALLED_FILES %defattr(-,root,root)