feat: Add Populate Scripts

This commit is contained in:
2025-10-20 15:18:28 -05:00
parent 051ad8c2ca
commit 28397facb6
7 changed files with 415 additions and 0 deletions

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