added test.py to .gitignore

prepared tra.py for threading implement

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2020-05-23 19:43:59 -05:00
parent 4f439d6094
commit ba06b9293e
2 changed files with 48 additions and 42 deletions

1
.gitignore vendored
View File

@ -31,3 +31,4 @@ data-analysis/__pycache__/
analysis-master/__pycache__/ analysis-master/__pycache__/
analysis-master/.pytest_cache/ analysis-master/.pytest_cache/
data-analysis/.pytest_cache/ data-analysis/.pytest_cache/
data-analysis/test.py

View File

@ -27,65 +27,70 @@ def main():
global pit_enable global pit_enable
global config global config
config = su.load_config("config.json") global config = su.load_config("config.json")
while(True): task = threading.Thread(name = "match", target = match)
task.start()
task = threading.Thread(name = "match", target = metric)
task.start()
task = threading.Thread(name = "pit", target = pit)
task.start()
if match_enable == True and match == False: def match():
def target(): match = True
apikey = config["key"]["database"] apikey = config["key"]["database"]
competition = config["competition"] competition = config["competition"]
tests = config["statistics"]["match"] tests = config["statistics"]["match"]
data = su.load_match(apikey, competition) data = su.load_match(apikey, competition)
su.matchloop(apikey, competition, data, tests) su.matchloop(apikey, competition, data, tests)
match = False match = False
return
match = True if match_enable == True and match == False:
task = threading.Thread(name = "match", target=target)
task.start()
if metric_enable == True and metric == False: task = threading.Thread(name = "match", target = match)
task.start()
def target(): def metric():
apikey = config["key"]["database"] metric = True
tbakey = config["key"]["tba"]
competition = config["competition"]
metric = config["statistics"]["metric"]
timestamp = su.get_previous_time(apikey) apikey = config["key"]["database"]
tbakey = config["key"]["tba"]
competition = config["competition"]
metric = config["statistics"]["metric"]
su.metricloop(tbakey, apikey, competition, timestamp, metric) timestamp = su.get_previous_time(apikey)
metric = False su.metricloop(tbakey, apikey, competition, timestamp, metric)
return
match = True metric = False
task = threading.Thread(name = "metric", target=target)
task.start()
if pit_enable == True and pit == False: if metric_enable == True and metric == False:
def target(): task = threading.Thread(name = "match", target = metric)
task.start()
apikey = config["key"]["database"] def pit():
competition = config["competition"]
tests = config["statistics"]["pit"]
data = su.load_pit(apikey, competition) pit = True
su.pitloop(apikey, competition, data, tests)
pit = False apikey = config["key"]["database"]
return competition = config["competition"]
tests = config["statistics"]["pit"]
pit = True data = su.load_pit(apikey, competition)
task = threading.Thread(name = "pit", target=target) su.pitloop(apikey, competition, data, tests)
task.start()
pit = False
if pit_enable == True and pit == False:
task = threading.Thread(name = "pit", target = pit)
task.start()
task = threading.Thread(name = "main", target=main) task = threading.Thread(name = "main", target=main)
task.start() task.start()