Base Model für CITT erstellt, PTM Dortmund ergänzt, Tests hinzugefügt

This commit is contained in:
Markus Clauß
2023-02-28 13:56:11 +01:00
parent b248a7e9b1
commit e861dbf10e
17 changed files with 917 additions and 103 deletions

View File

@@ -0,0 +1,12 @@
import logging
from io import BytesIO
logger = logging.getLogger(__name__)
def read_file_to_bytesio(filename: str):
with open(filename, "rb") as fh:
buf = BytesIO(fh.read())
return buf