parse strings

In [1]:
import csv
csv.reader(['one,two,three']).__next__()
Out[1]:
['one', 'two', 'three']