futures


Namefutures JSON
Version 3.4.0 PyPI version JSON
download
home_pagehttps://github.com/agronholm/pythonfutures
SummaryBackport of the concurrent.futures package from Python 3
upload_time2022-10-31 21:40:32
maintainerAlex Grönholm
docs_urlhttps://pythonhosted.org/futures/
authorBrian Quinlan
requires_python>=2.6, <3
licensePSF
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            .. image:: https://travis-ci.org/agronholm/pythonfutures.svg?branch=master
  :target: https://travis-ci.org/agronholm/pythonfutures
  :alt: Build Status

This is a backport of the `concurrent.futures`_ standard library module to Python 2.

It **does not** work on Python 3 due to Python 2 syntax being used in the codebase.
Python 3 users should not attempt to install it, since the package is already included in the
standard library.

To conditionally require this library only on Python 2, you can do this in your ``setup.py``:

.. code-block:: python

    setup(
        ...
        extras_require={
            ':python_version == "2.7"': ['futures']
        }
    )

Or, using the newer syntax:

.. code-block:: python

    setup(
        ...
        install_requires={
            'futures; python_version == "2.7"'
        }
    )

.. warning:: The ``ProcessPoolExecutor`` class has known (unfixable) problems on Python 2 and
   should not be relied on for mission critical work. Please see `Issue 29 <https://github.com/agronholm/pythonfutures/issues/29>`_ and `upstream bug report <https://bugs.python.org/issue9205>`_ for more details.

.. _concurrent.futures: https://docs.python.org/library/concurrent.futures.html



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/agronholm/pythonfutures",
    "name": "futures",
    "maintainer": "Alex Gr\u00f6nholm",
    "docs_url": "https://pythonhosted.org/futures/",
    "requires_python": ">=2.6, <3",
    "maintainer_email": "alex.gronholm@nextday.fi",
    "keywords": "",
    "author": "Brian Quinlan",
    "author_email": "brian@sweetapp.com",
    "download_url": "https://files.pythonhosted.org/packages/56/99/75ceaebf317cb027319909ed09ee117388f0d53ba0880520952a0e8a8458/futures-3.4.0.tar.gz",
    "platform": null,
    "description": ".. image:: https://travis-ci.org/agronholm/pythonfutures.svg?branch=master\n  :target: https://travis-ci.org/agronholm/pythonfutures\n  :alt: Build Status\n\nThis is a backport of the `concurrent.futures`_ standard library module to Python 2.\n\nIt **does not** work on Python 3 due to Python 2 syntax being used in the codebase.\nPython 3 users should not attempt to install it, since the package is already included in the\nstandard library.\n\nTo conditionally require this library only on Python 2, you can do this in your ``setup.py``:\n\n.. code-block:: python\n\n    setup(\n        ...\n        extras_require={\n            ':python_version == \"2.7\"': ['futures']\n        }\n    )\n\nOr, using the newer syntax:\n\n.. code-block:: python\n\n    setup(\n        ...\n        install_requires={\n            'futures; python_version == \"2.7\"'\n        }\n    )\n\n.. warning:: The ``ProcessPoolExecutor`` class has known (unfixable) problems on Python 2 and\n   should not be relied on for mission critical work. Please see `Issue 29 <https://github.com/agronholm/pythonfutures/issues/29>`_ and `upstream bug report <https://bugs.python.org/issue9205>`_ for more details.\n\n.. _concurrent.futures: https://docs.python.org/library/concurrent.futures.html\n\n\n",
    "bugtrack_url": null,
    "license": "PSF",
    "summary": "Backport of the concurrent.futures package from Python 3",
    "version": "3.4.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "9f7301fd2a12b967d0e03c46b8ef9e27",
                "sha256": "5ec20fa8bdccf96ac9bf9fb2473f51b14c117db638aa8a4a6c27b43532a0efe9"
            },
            "downloads": -1,
            "filename": "futures-3.4.0-py2-none-any.whl",
            "has_sig": false,
            "md5_digest": "9f7301fd2a12b967d0e03c46b8ef9e27",
            "packagetype": "bdist_wheel",
            "python_version": "py2",
            "requires_python": ">=2.6, <3",
            "size": 16610,
            "upload_time": "2022-10-31T21:40:30",
            "upload_time_iso_8601": "2022-10-31T21:40:30.639119Z",
            "url": "https://files.pythonhosted.org/packages/d4/ea/9d513529a89bcbcd07c8acbac9eecfad29e7562e0b9d69d14f475987ad70/futures-3.4.0-py2-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "af7b2c76e2696124107a593deab2a1a8",
                "sha256": "3ec8ceecd1b85547aa7539c1db8d6b2a6245405de427e4780809b6f56a18fdd2"
            },
            "downloads": -1,
            "filename": "futures-3.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "af7b2c76e2696124107a593deab2a1a8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=2.6, <3",
            "size": 27686,
            "upload_time": "2022-10-31T21:40:32",
            "upload_time_iso_8601": "2022-10-31T21:40:32.078999Z",
            "url": "https://files.pythonhosted.org/packages/56/99/75ceaebf317cb027319909ed09ee117388f0d53ba0880520952a0e8a8458/futures-3.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-10-31 21:40:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "agronholm",
    "github_project": "pythonfutures",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "futures"
}
        
Elapsed time: 0.01125s