Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/saghul/python-fibers

Lightweight cooperative microthreads for Python
https://github.com/saghul/python-fibers

coroutines greenlet python stacklet tasklet

Last synced: 2 days ago
JSON representation

Lightweight cooperative microthreads for Python

Awesome Lists containing this project

README

        

===========================================
fibers: lightweight concurrent multitasking
===========================================

.. image:: https://badge.fury.io/py/fibers.png
:target: http://badge.fury.io/py/fibers

Overview
========

Fibers are lightweight primitives for cooperative multitasking in Python. They
provide means for running pieces of code that can be paused and resumed. Unlike
threads, which are preemptively scheduled, fibers are scheduled cooperatively,
that is, only one fiber will be running at a given point in time, and no other
fiber will run until the user explicitly decides so.

When a fiber is created it will not run automatically. A fiber must be 'switched'
into for it to run. Fibers can switch control to other fibers by way of the `switch`
or `throw` functions, which switch control or raise and exception in the target
fiber respectively.

Example:

::

import fibers

def func1():
print "1"
f2.switch()
print "3"
f2.switch()

def func2():
print "2"
f1.switch()
print "4"

f1 = fibers.Fiber(target=func1)
f2 = fibers.Fiber(target=func2)
f1.switch()

The above example will print "1 2 3 4", but the result was obtained by the
cooperative work of 2 fibers yielding control to each other.

CI status
=========

.. image:: https://github.com/saghul/python-fibers/actions/workflows/python-package.yml/badge.svg
::target: https://github.com/saghul/python-fibers/actions/

Documentation
=============

http://readthedocs.org/docs/python-fibers/

Installing
==========

fibers can be installed via pip as follows:

::

pip install fibers

Building
========

Get the source:

::

git clone https://github.com/saghul/python-fibers

Linux:

::

./build_inplace

Mac OSX:

::

(XCode needs to be installed)
export ARCHFLAGS="-arch x86_64"
./build_inplace

Microsoft Windows:

::

python setup.py build_ext --inplace

Running the test suite
======================

The test suite can be run using pytest:

::

python -m pytest -v .

Author
======

Saúl Ibarra Corretgé

This project would not have been possible without the previous work done in
the `greenlet `_ and stacklet (part of
`PyPy `_) projects.

License
=======

Unless stated otherwise on-file fibers uses the MIT license, check LICENSE file.

Supported Python versions
=========================

Python >= 3.7 are supported. Other older Python versions might work, but
they are not actively tested. CPython and PyPy are supported.

Supported architectures
=======================

x86, x86-64, ARM, ARM64, MIPS64, PPC64 and s390x are supported.

Contributing
============

If you'd like to contribute, fork the project, make a patch and send a pull
request. Have a look at the surrounding code and please, make yours look
alike.