move data formating scripts into this repo

This commit is contained in:
Carl Philipp Klemm
2024-08-13 16:27:41 +02:00
parent a1cfee1955
commit 31444f919e
7 changed files with 490 additions and 0 deletions

3
scripts/parseerror.py Normal file
View File

@ -0,0 +1,3 @@
class ParseError(Exception):
def __init__(self, message):
self.message = message