aboutsummaryrefslogtreecommitdiffstats
path: root/src/csv_reader.py
blob: 23afc66545b094ade27f5151ab9e95ea6e2724c2 (plain)
1
2
3
4
5
6
7
8
import csv
from io import StringIO
from typing import List, Dict

def csv_reader(content: str) -> List[Dict[str, str]]:
    f = StringIO(content)
    reader = csv.DictReader(f)
    return list(reader)
git.ajschof.me — hosted by ajschofield — powered by cgit