This commit is contained in:
2025-01-06 18:56:17 +03:00
commit 41f02ffcda
10 changed files with 301 additions and 0 deletions

24
main.py Normal file
View File

@@ -0,0 +1,24 @@
import csv
from enum import Enum
from typing import List
from anixarttierlist import group_by_common_part
class TableColumns(Enum):
ID = 0
RUS_NAME = 1
JAP_NAME = 2
ALT_NAME = 3
def main():
anime_list: List[str] = []
with open('./aboba.csv', 'r', newline='') as csvfile:
spamreader = csv.reader(csvfile, delimiter=',')
for row in spamreader:
name: str = row[TableColumns.JAP_NAME.value]
if __name__ == '__main__':
main()