This commit is contained in:
rodia
2025-09-04 15:28:31 -03:00
parent 5ad1837d2d
commit bef22fc95c
11 changed files with 331 additions and 10 deletions

10
demo/tools.py Normal file
View File

@@ -0,0 +1,10 @@
import csv
def open_file(file_path):
content = []
with open(file_path, mode='r', encoding='utf-8') as csvfile:
data = csv.DictReader(csvfile)
for row in data:
content.append(row)
return content