I am trying to use the tablib library and create a Dataset from a .csv file. The following works:
import tablib
dataset = tablib.Dataset().load(open('data.csv').read())
However, in some cases, I'd like to load the .csv file from a URL. Any ideas on how to do that?
You wrote
You want