package: bezpečné otevírání csv

This commit is contained in:
David Spáčil
2026-06-27 18:09:43 +02:00
parent 388c92f817
commit 9d5c51a17a
+3 -1
View File
@@ -2,6 +2,7 @@ from typing import Any
from random import randint
from os import system, name
import re
from importlib.resources import files
import csv
from collections import Counter
from tabulate import tabulate
@@ -16,7 +17,8 @@ aggr: dict[str, int] = {}
final_score: int = 10000
with open("hodnoty.csv", "r") as csv_file:
csv_reader = csv.reader(csv_file)
csv_text = files(__package__).joinpath("hodnoty.csv").read_text(encoding="utf-8")
csv_reader = csv.reader(csv_text.splitlines())
for row in csv_reader:
key = str(row[0])