Exemple #1
0
class TagAlchemyAPI(threading.Thread):
    def __init__(self, keyword=None):
        threading.Thread.__init__(self)
        self.alchemy_api = AlchemyApiCategory(keyword)
        self.result = [] # highly possibly several of them

    def run(self):
        self.result = self.alchemy_api.get_types()
Exemple #2
0
class TagAlchemyAPI(threading.Thread):
    def __init__(self, keyword=None):
        threading.Thread.__init__(self)
        self.alchemy_api = AlchemyApiCategory(keyword)
        self.result = []  # highly possibly several of them

    def run(self):
        self.result = self.alchemy_api.get_types()
Exemple #3
0
 def __init__(self, keyword=None):
     threading.Thread.__init__(self)
     self.alchemy_api = AlchemyApiCategory(keyword)
     self.result = [] # highly possibly several of them
Exemple #4
0
 def __init__(self, keyword=None):
     threading.Thread.__init__(self)
     self.alchemy_api = AlchemyApiCategory(keyword)
     self.result = []  # highly possibly several of them