7

I would like to use the nice executors and threadpooling APIs but I am constrained to a Python 2 environment. I cannot upgrade to Python 3 due to another third party dependency.

The closest answer I found is: Concurrent in Python 2

Community
  • 1
  • 1
Tapomay
  • 191
  • 1
  • 2
  • 9

1 Answers1

2

Found the following package for Python 2: https://pypi.python.org/pypi/futures

It says: Backport of the concurrent.futures package from Python 3.2

Trying it out.

Tapomay
  • 191
  • 1
  • 2
  • 9
  • I used that for python 2.7. Installed it (i.e. python-concurrent.futures) using Synaptic Package Manager (for ubuntu user) instead. – Sun Bear Feb 22 '17 at 16:05