Hi, 
In the examples you have 2 approaches to opening CSV files:
path="myfile.csv"
 src = ds.CSVDataSource(path,read_header=False,skip_rows=1)
or 
main = brewery.create_builder()
main.csv_source(path,skip_rows=1)
What's the difference, and when should I use which approach?
Thanks,
PJ