-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDESCRIPTION
34 lines (34 loc) · 1.56 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Package: ndjson
Type: Package
Title: Wicked-Fast Streaming 'JSON' ('ndjson') Reader
Version: 0.9.0
Date: 2022-10-14
Authors@R: c( person("Bob", "Rudis", email = "[email protected]", role =
c("aut", "cre"), comment = c(ORCID = "0000-0001-5670-2640")),
person("Niels", "Lohmann", role = "aut", comment = "C++ json
parser"), person("Deepak", "Bandyopadhyay", role = "aut", comment
= "C++ gzstream"), person("Lutz", "Kettner", role = "aut",
comment = "C++ gzstream"), person("Neal", "Fultz", role = "ctb",
comment = "Rcpp integration"), person("Maarten", "Demeyer", role = "ctb",
comment = "dtplyr cleanup"))
Maintainer: Bob Rudis <[email protected]>
Description: Streaming 'JSON' ('ndjson') has one 'JSON' record per-line
and many modern 'ndjson' files contain large numbers of records.
These constructs may not be columnar in nature, but it is often
useful to read in these files and "flatten" the structure out to
enable working with the data in an R 'data.frame'-like context.
Functions are provided that make it possible to read in plain
'ndjson' files or compressed ('gz') 'ndjson' files and either
validate the format of the records or create "flat" 'data.table'
structures from them.
URL: https://github.com/hrbrmstr/ndjson
BugReports: https://github.com/hrbrmstr/ndjson/issues
SystemRequirements: zlib, C++17
NeedsCompilation: yes
License: MIT + file LICENSE
Encoding: UTF-8
Suggests: tinytest, covr
Depends: R (>= 3.2.0)
Imports: Rcpp, data.table, tibble
LinkingTo: Rcpp
RoxygenNote: 7.2.1