项目作者: netique

项目描述 :
Access sci-hub from R
高级语言: R
项目地址: git://github.com/netique/scihubr.git
创建时间: 2021-03-15T00:39:44Z
项目社区:https://github.com/netique/scihubr

开源协议:Other

下载


scihubr

{scihubr} is an unofficial API to sci-hub.se,
making it easy to download the papers you need within R. The package
also offers you a citation.

Installation

The package is only available from GitHub with:

  1. if (!require("remotes") install.packages("remotes")
  2. remotes::install_github("netique/scihubr")

Example

If you just want ot read a paper as quick as possible, type:

  1. scihubr::download_paper("url_or_doi_of_your_favourite_paper")

Or, state the path and optional open = FALSE meaning you do not want
to open the result immediately.

  1. scihubr::download_paper("url_or_doi_of_your_favourite_paper",
  2. path = "~/my_favourite_paper.pdf",
  3. open = FALSE
  4. )