Пример #1
0
class MatchStruct(Thread):
    def __init__(self, url, ratio_percents):
        super(MatchStruct, self).__init__()
        self.url = url
        self.match = Match(url)
        self.result = Result(url)
        self.ratio = MatchRatio(url, ratio_percents)

    def run(self):
        self.match.start()
        xhash, id_sport, id_match, id_version = match_data_request(self.url)
        self.ratio.add_keys(xhash, id_sport, id_match, id_version)
        self.result.add_keys(xhash, id_sport, id_match)
        self.ratio.start()
        self.result.start()
        while self.match.isAlive() and self.result.isAlive() and self.ratio.isAlive():
            print(self.match.isAlive() and self.result.isAlive() and self.ratio.isAlive())
            print(self.result.isAlive())
            print(self.ratio.isAlive())
            time.sleep(1)

    def print_match(self):
        self.match.show_match()
        self.result.show_result()
        self.ratio.show_ratious()
Пример #2
0
 def start_threads(self, url):
     node = Match(url)
     node_ratio = MatchRatio(url, self.ratio_percents)
     node_result = Result(url)
     node.start()
     node.join()
     #  Здесь сделать request кодов
     xhash, id_sport, id_match, id_version = node.return_keys()
     node_ratio.add_keys(xhash, id_sport, id_match, id_version)
     node_result.add_keys(xhash, id_sport, id_match)
     node_ratio.start()
     node_result.start()
     node.add_data(node_ratio, node_result)
     return node