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
import dateutil.parser | |
import optparse | |
import csv | |
import tempodb | |
from threading import Thread | |
from Queue import Queue | |
class Worker(Thread): | |
"""Thread executing tasks from a given tasks queue""" |