Skip to main content

It does what it says it does.

Project description

https://img.shields.io/pypi/pyversions/background.svg https://github.com/ParthS007/background/workflows/CI/badge.svg

Background

It runs stuff in the background.

“An elegant decorator-based abstraction around Python 3’s concurrent.futures ThreadPoolExecutor class”

—Simon Willison

This module makes it stupidly simple to run things in the background of your application, be it a CLI app, or a web app.

Basic Usage

import time

import background


@background.task
def work():
    # Do something expensive here.
    time.sleep(10)


for _ in range(100):
    work()

Advanced Usage

import time

import background

# Use 40 background threads.
background.n = 40


@background.task
def work():
    time.sleep(10)
    return "Done!"

@background.callback
def work_callback(future):
    print(future.result())


for _ in range(100):
    work()

Installation

$ pipenv install background
✨🍰✨

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

background-0.2.1.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

background-0.2.1-py3-none-any.whl (2.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page