|
| 1 | +```@meta |
| 2 | +Module = UrlDownload |
| 3 | +``` |
| 4 | + |
1 | 5 | # Additional functionality
|
2 | 6 |
|
3 | 7 | ## Progress Meter
|
|
164 | 168 | 3,4
|
165 | 169 | ```
|
166 | 170 |
|
167 |
| -You can process downloaded file with `urldownload` in the following way |
| 171 | +Since [`urldownload`](@ref) supports local files download, you can read data in the following way |
| 172 | +```julia |
| 173 | +res = urldownload("/tmp/data.csv") |> DataFrame |
| 174 | +``` |
| 175 | + |
| 176 | +## Resource type autodetection |
| 177 | + |
| 178 | +As it was said in previous section, [`urldownload`](@ref) can autodetect resource type and download and process data accordingly. In case autodetection fails, you can always fallback to manual resource definition with the help of `File` and `URL` structs or `@f_str` and `@u_str` macros |
| 179 | +```julia |
| 180 | +using DataFrames |
| 181 | +using UrlDownload |
| 182 | +using UrlDownload: File, URL, @f_str, @u_str |
| 183 | + |
| 184 | +# All of these are equivalent |
| 185 | +url = "https://raw.githubusercontent.com/Arkoniak/UrlDownload.jl/master/data/ext.csv" |
| 186 | +res = urldownload(url) |> DataFrame |
| 187 | + |
| 188 | +url = u"https://raw.githubusercontent.com/Arkoniak/UrlDownload.jl/master/data/ext.csv" |
| 189 | +res = urldownload(url) |> DataFrame |
| 190 | + |
| 191 | +url = @u_str "https://raw.githubusercontent.com/Arkoniak/UrlDownload.jl/master/data/ext.csv" |
| 192 | +res = urldownload(url) |> DataFrame |
| 193 | + |
| 194 | +url = URL("https://raw.githubusercontent.com/Arkoniak/UrlDownload.jl/master/data/ext.csv") |
| 195 | +res = urldownload(url) |> DataFrame |
| 196 | +``` |
| 197 | + |
| 198 | +and for the files |
168 | 199 | ```julia
|
169 |
| -io = open("/tmp/data.csv", "r") |
170 |
| -res = urldownload(io) |> DataFrame |
171 |
| -close(io) |
| 200 | +using DataFrames |
| 201 | +using UrlDownload |
| 202 | +using UrlDownload: File, URL, @f_str, @u_str |
| 203 | + |
| 204 | +# All of these are equivalent |
| 205 | +url = "/tmp/data.csv" |
| 206 | +res = urldownload(url) |> DataFrame |
| 207 | + |
| 208 | +url = f"/tmp/data.csv" |
| 209 | +res = urldownload(url) |> DataFrame |
| 210 | + |
| 211 | +url = @f_str "/tmp/data.csv" |
| 212 | +res = urldownload(url) |> DataFrame |
| 213 | + |
| 214 | +url = File("/tmp/data.csv") |
| 215 | +res = urldownload(url) |> DataFrame |
172 | 216 | ```
|
0 commit comments