Metadata-Version: 2.4
Name: futures3
Version: 1.0.0
Summary: The latest version for concurrent.futures package from Python 3
Home-page: https://github.com/mihaiparvu/futures3
Author: Brian Quinlan
Author-email: brian@sweetapp.com
Maintainer: Mihai Pârvu
Maintainer-email: mihaiparvu90@gmail.com
License: PSF
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >3
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: requires-python
Dynamic: summary

This is a port of `concurrent.futures`_ standard library module of Python 3.

There are different versions of the ``concurrent.futures`` code, for each version of Python 3.
This package contains the latest code from CPython master_ branch with small changes to make it compatible with both
Python 3.6 and Python 3.7.

It does not work with Python 2, but for that you can use pythonfutures_.

To install it, simply run::

    pip install futures3

To import it:

    .. code-block:: python

        from futures3.thread import ThreadPoolExecutor
        from futures3.process import ProcessPoolExecutor

.. _master: https://github.com/python/cpython/tree/master/Lib/concurrent/futures
.. _concurrent.futures: https://docs.python.org/3.8/library/concurrent.futures.html
.. _pythonfutures: https://github.com/agronholm/pythonfutures
