BenBrostoff / draftfast

A tool to automate and optimize DraftKings and FanDuel lineup construction.
287 stars 113 forks source link

Users should be able to pick file name / location of generated CSV projections #69

Closed BenBrostoff closed 6 years ago

BenBrostoff commented 6 years ago

Current:

with open('data/current-projections.csv', 'w') as fp:
    w = csv.writer(fp, delimiter=',')
    w.writerows(hold)

This should be configurable and not hard coded.