Resultater fra xml og live mtr

This commit is contained in:
Trygve 2022-05-21 16:27:59 +02:00
parent 7abb532b90
commit 63f9e40fc6
1 changed files with 17 additions and 8 deletions

25
dev.py
View File

@ -1,16 +1,25 @@
import otime import otime
import mtr
from rich import print from rich import print
from rich import inspect from rich import inspect
from rich.console import Console from rich.console import Console
from rich.columns import Columns from rich.columns import Columns
from rich.table import Table from rich.table import Table
if __name__ == "__main__": if __name__ == "__main__":
event = otime.Event(0, 'supercup') event = otime.Event(0, 'Jukola-testløp')
event.import_ttime_cnf('k2ds/tt.cnf') #event.import_ttime_cnf('k2ds/tt.cnf')
event.import_ttime_db('k2ds/db.csv') #event.import_ttime_db('k2ds/db.csv')
event.import_mtr_file('k2ds/mtr.txt') #event.import_mtr_file('k2ds/mtr.txt')
#card_punches = otime.card_punch.list_from_mtr_f('sc_2021_ttime/mtr.csv') #card_punches = otime.card_punch.list_from_mtr_f('sc_2021_ttime/mtr.csv')
event.match_runners_cards() #event.match_runners_cards()
event.create_start_list_pdf('starttimes.pdf') #event.create_start_list_pdf('starttimes.pdf')
#event.get_xml_res().write('Resultater.xml') #event.get_xml_res().write('Resultater.xml')
event.import_ttime_cnf('/home/trygve/Dokumenter/Jukola_uttak/tt.cnf')
event.runners = otime.runners_from_xml_entries('/home/trygve/Dokumenter/Jukola_uttak/entries_Nattøkt,_Jukola-testløp.xml', event.o_classes)
event.card_dumps = mtr.dump_all('/dev/ttyUSB0')
event.match_runners_cards()
event.get_xml_res().write('Resultater_uttak.xml')
for n in event.card_dumps:
print(n.card, n.controls)