The Wayback Machine - https://web.archive.org/web/20201129044255/https://github.com/ParthS007/background
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

README.rst

Background: run 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.

https://farm5.staticflickr.com/4296/36137232912_7276365f2e_k_d.jpg

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)

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


for _ in range(100):
    work()

Installation

$ pipenv install background
✨🍰✨
You can’t perform that action at this time.