├── .gitignore ├── README.md ├── check_punches.py ├── gpl-3.0.txt ├── requirements.txt ├── si_check_memory.py ├── si_normalize_station.py ├── si_read_backup.py ├── si_read_card.py ├── si_read_card_serial.py ├── si_set_legacy_4800.py └── sireader2.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | env 3 | check.tsv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/README.md -------------------------------------------------------------------------------- /check_punches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/check_punches.py -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyserial==3.4 2 | six 3 | -------------------------------------------------------------------------------- /si_check_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/si_check_memory.py -------------------------------------------------------------------------------- /si_normalize_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/si_normalize_station.py -------------------------------------------------------------------------------- /si_read_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/si_read_backup.py -------------------------------------------------------------------------------- /si_read_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/si_read_card.py -------------------------------------------------------------------------------- /si_read_card_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/si_read_card_serial.py -------------------------------------------------------------------------------- /si_set_legacy_4800.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/si_set_legacy_4800.py -------------------------------------------------------------------------------- /sireader2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/per-magnusson/sportident-python/HEAD/sireader2.py --------------------------------------------------------------------------------