Hi

So I'm struggling with the basics of reading a csv into a reseach notebook.  The CSV has headers Date, Data1.  When I try the following I only get ‘D’.  How to get the csvreader to read the whole first line?  or better yet to get all the data into a dataframe, then I can start working with the dataframe and match it to other data.

  1. from io import StringIO
  2. import csv
  3. import pandas as pd
  4. qb = QuantBook()
  5. csvfile = qb.Download('https://www.dropbox.com/s/7j45m55pjy1qfrm/test_drop.csv?dl=1')
  6. #df = pd.DataFrame(csv.reader(csvfile))
  7. csvreader = csv.reader(csvfile)
  8. header = []
  9. header = next(csvreader)
  10. header

Author

Newoptionz

April 2023