[go: nahoru, domu]

Skip to content

alejandrogallo/python-scihub

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SciHub

Python Build Status Pypi

scihub is an unofficial API for sci-hub.cc. scihub can download papers from sci-hub.

If you believe in open access to scientific papers, please donate to Sci-Hub.

Setup

pip install scihub

Usage

fetch

from scihub import SciHub

sh = SciHub()

# fetch specific article (don't download to disk)
# this will return a namedtuple of the form
# result.pdf => PDF_DATA
# result.url => SOURCE_URL
# result.doi => PARSED_DOI
result = sh.fetch('http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=1648853')

if result:
  with open('output.pdf', 'wb+') as fd:
      fd.write(result.pdf)

License

MIT

About

Python API and command-line tool for Sci-hub

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%