I have a list of the URLs, and I'd love to read them to the dask data frame
at once, but it looks like read_csv
can't use an asterisk for http
. Is there any way to achieve that?
Here is an example:
link = 'http://web.mta.info/developers/'
data = [ 'data/nyct/turnstile/turnstile_170128.txt',
'data/nyct/turnstile/turnstile_170121.txt',
'data/nyct/turnstile/turnstile_170114.txt',
'data/nyct/turnstile/turnstile_170107.txt'
]
and what I want is
df = dd.read_csv('XXXX*X')