En règle générale, la façon de procéder serait d'utiliser un pool de threads et des téléchargements de file d'attente qui émettraient un signal, c'est-à-dire un événement, lorsque cette tâche a terminé son traitement. Vous pouvez le faire dans le cadre du module de threading fourni par Python.
Pour effectuer ces actions, j'utiliserais des objets événement et le module File d'attente .
Cependant, une démonstration rapide et sale de ce que vous pouvez faire en utilisant une threading.Thread
implémentation simple peut être vue ci-dessous:
import os
import threading
import time
import urllib2
class ImageDownloader(threading.Thread):
def __init__(self, function_that_downloads):
threading.Thread.__init__(self)
self.runnable = function_that_downloads
self.daemon = True
def run(self):
self.runnable()
def downloads():
with open('somefile.html', 'w+') as f:
try:
f.write(urllib2.urlopen('http://google.com').read())
except urllib2.HTTPError:
f.write('sorry no dice')
print 'hi there user'
print 'how are you today?'
thread = ImageDownloader(downloads)
thread.start()
while not os.path.exists('somefile.html'):
print 'i am executing but the thread has started to download'
time.sleep(1)
print 'look ma, thread is not alive: ', thread.is_alive()
Il serait probablement logique de ne pas interroger comme je le fais ci-dessus. Dans ce cas, je changerais le code en ceci:
import os
import threading
import time
import urllib2
class ImageDownloader(threading.Thread):
def __init__(self, function_that_downloads):
threading.Thread.__init__(self)
self.runnable = function_that_downloads
def run(self):
self.runnable()
def downloads():
with open('somefile.html', 'w+') as f:
try:
f.write(urllib2.urlopen('http://google.com').read())
except urllib2.HTTPError:
f.write('sorry no dice')
print 'hi there user'
print 'how are you today?'
thread = ImageDownloader(downloads)
thread.start()
thread.join()
Notez qu'il n'y a pas d'indicateur de démon défini ici.
import threading, time; wait=lambda: time.sleep(2); t=threading.Thread(target=wait); t.start(); print('end')
). J'espérais que "l'arrière-plan" impliquait également un détachement.