csv_parser.py 207 字节
Newer Older
1 2 3 4 5 6 7 8
#!/usr/bin/env python3
""" Reusable CSV parser for both football and weather data.  """
import csv


def get_next_result(csv_file, func):
    for stats in csv.DictReader(csv_file):
        yield func(stats)