Open
Description
Currently DataFrame only expects a FileReference as parameter to create an instance:
DataFrame readFromCsv: '/dir1/dir2/myfile.csv' asFileReference
It could be a nice time saver to let the DataFrame actually "resolve" the parameter and download a CSV in a URL String transparently, for example:
DataFrame readFromCsv: 'http://path/to/url/myfile.csv'