rdflib (version 0.2.3)

read_nquads: read an nquads file

Description

read an nquads file

Usage

read_nquads(file, ...)

Arguments

file

path to nquads file

...

additional arguments to rdf_parse()

Value

an rdf object. See rdf_parse()

Examples

Run this code
# NOT RUN {
tmp <- tempfile(fileext = ".nq")
library(datasets)
write_nquads(iris, tmp)
read_nquads(tmp)

# }

Run the code above in your browser using DataCamp Workspace