It does what it says it does.
Project description
# Background2 : run stuff in the backround
---
this is a fork from [kennethreitz/background](https://github.com/kennethreitz/background.git)
The main purpose is add multi instance to background
```
import background2
import time
bg1 = background2.Background()
bg2 = background2.Background()
@bg1.task
def work1(param1,param2):
print('task1:work1')
time.sleep(3)
return 'task1:work1:{}-{}'.format(param1,param2)
@bg2.task
def work2():
print('task2:work2')
time.sleep(3)
return 'task2:work2'
@bg1.callback
def back1(future):
print('back1 for task1')
@bg2.callback
def back2(future):
print('back2 for task2')
def test_background():
work1('1','2')
work2()
def common():
print('common function')
if __name__ == '__main__':
test_background()
common()
```
### install
```pip install background2```
or
clone the project and ``` python setup.py install ```
---
suggestion and pull request are welcome
LICENSE:MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
background2-0.1.1.tar.gz
(3.1 kB
view details)
File details
Details for the file background2-0.1.1.tar.gz
.
File metadata
- Download URL: background2-0.1.1.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ebc16aa3e541ee0034f13c3712ae79119c984dc76ba2a8368675fc884bdbe02 |
|
MD5 | 59bf0940ecf663a8279827f67d0e0d45 |
|
BLAKE2b-256 | 5e56d7d23d767adbd7e105ec3e4c400d6b0b4f53e2cef18f3c1dbb5b1e00be91 |