dev-version

This commit is contained in:
janis
2022-03-11 11:57:09 +01:00
parent 17b2bb1fa2
commit 014640466c
7 changed files with 31 additions and 11 deletions

17
bin/info_handler.py Normal file
View File

@@ -0,0 +1,17 @@
import bin.csv_parsers
cvr = bin.csv_parsers.CsvRead()
cvw = bin.csv_parsers.CsvWrite()
class InfoHandler:
def __init__(self):
pass
def infohandler(self, infos, path):
print(path, "path")
self.path = f"{path}/songlist.csv"
self.__info_doc = cvr.importing(self.path)
print(self.__info_doc)
print(infos)