You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import glob
import csv
from getencode import getenc
csvList = glob.glob('./*.csv')
for filePath in csvList:
enc = getenc.getEncode(filePath)
with open(filePath, 'r', encoding=enc) as f:
data = csv.reader(f)