PolMine / GermaParl

GermaParl R Data Package
12 stars 3 forks source link

CWB indexed corpus at zenodo #16

Closed ablaette closed 3 years ago

ablaette commented 4 years ago

Having uploaded the tarball with the CWB indexed version of GermaParl to zenodo, this is how you can download the corpus from there.

library(RCurl)
library(jsonlite)

gparl_zenodo <- fromJSON(getURL("https://zenodo.org/api/records/3735141"))[["files"]][["links"]][["self"]]
gparl_local <- tempfile()
download.file(url = gparl_zenodo, destfile = gparl_local)

Should be easy to swith the storage location from the PolMine server to zenodo, which is the much better solution in terms of availability, DOI etc.

ablaette commented 3 years ago

Moving to Zenodo has really been a good move. I am confident to close this issue.