Skip to content

Commit efdd81b

Browse files
author
Andrey Oskin
committed
Fixed detection for j1
1 parent a925b83 commit efdd81b

File tree

2 files changed

+54
-9
lines changed

2 files changed

+54
-9
lines changed

docs/src/advanced.md

+48-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
```@meta
2+
Module = UrlDownload
3+
```
4+
15
# Additional functionality
26

37
## Progress Meter
@@ -164,9 +168,49 @@ x,y
164168
3,4
165169
```
166170

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
168199
```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
172216
```

src/UrlDownload.jl

+6-5
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct URL <: Resource
4444
end
4545

4646
"""
47-
macro f_str(name)
47+
f_str(name)
4848
4949
Use this macro to explicitly show that downloaded url is actually local file resource. It is useful if resource type autodetection fails.
5050
@@ -67,7 +67,7 @@ macro f_str(p)
6767
end
6868

6969
"""
70-
macro u_str(name)
70+
u_str(name)
7171
7272
Use this macro to explicitly show that downloaded url is remote http resource. It is useful if resource type autodetection fails.
7373
@@ -255,10 +255,11 @@ end
255255

256256
autodetect_uri_type(url) = url
257257
function autodetect_uri_type(url::AbstractString)
258-
if startswith(url, r"https?://")
259-
return URL(url)
260-
else
258+
m = match(r"^https?://.*", url)
259+
if m === nothing
261260
return File(url)
261+
else
262+
return URL(url)
262263
end
263264
end
264265

0 commit comments

Comments
 (0)