17 lines
533 B
Python
17 lines
533 B
Python
import otime
|
|
from rich import print
|
|
from rich import inspect
|
|
from rich.console import Console
|
|
from rich.columns import Columns
|
|
from rich.table import Table
|
|
|
|
if __name__ == "__main__":
|
|
event = otime.Event(0, 'supercup')
|
|
event.import_ttime_cnf('k2ds/tt.cnf')
|
|
event.import_ttime_db('k2ds/db.csv')
|
|
event.import_mtr_file('k2ds/mtr.txt')
|
|
#card_punches = otime.card_punch.list_from_mtr_f('sc_2021_ttime/mtr.csv')
|
|
event.match_runners_cards()
|
|
event.create_start_list_pdf('starttimes.pdf')
|
|
#event.get_xml_res().write('Resultater.xml')
|