This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
__author__ = 'jules' | |
from multiprocessing import Pool | |
import random | |
import time | |
class Job: | |
""" | |
Representation of a Job. Used to pass data to the pool and to return the result. | |
You can add all the information you need to this object |