We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20e7304 + 863eae4 commit 24b1809Copy full SHA for 24b1809
.gitignore
@@ -6,3 +6,5 @@
6
/dev/
7
/docs/build/
8
/docs/site/
9
+
10
+.vscode/
Project.toml
@@ -11,7 +11,7 @@ JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
11
JSONTables = "b9914132-a727-11e9-1322-f18e41205b0b"
12
13
[compat]
14
-CSV = "0.6"
+CSV = "0.6, 0.7"
15
DataFrames = "0.21"
16
HTTP = "0.8"
17
JSON3 = "1"
src/nass.jl
@@ -17,7 +17,7 @@ function get_nass(args...; format="json")
DataFrame(jsontable(JSON3.read(r)[:data]))
18
elseif uppercase(format) == "CSV"
19
r = request("GET", string(header, query)).body
20
- CSV.read(r)
+ CSV.File(r) |> DataFrame
21
else
22
r = request("GET", string(header, query))
23
end
0 commit comments