Skip to content

Commit

Permalink
Update version info
Browse files Browse the repository at this point in the history
  • Loading branch information
devmessias committed Aug 24, 2017
1 parent 9264686 commit b09aaa6
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# SciHub to PDF(Beta)


## Description

scihub2pdf is a module of [bibcure](https://github.com/bibcure/bibcure)
Expand Down Expand Up @@ -27,8 +28,15 @@ $ scihub2pdf 10.1038/s41524-017-0032-0

Given a title...
```
$ sci2bib --title An useful paper
$ scihub2pdf --title An useful paper
```

Arxiv...
```
$ scihub2pdf arxiv:0901.2686
$ scihub2pdf --title arxiv:Periodic table for topological insulators
```

Location folder as argument
```
$ scihub2pdf -i input.bib -l somefoler/
Expand All @@ -52,3 +60,17 @@ $ scihub2pdf -i input.bib --uselibgen
- Unstalbe
- No CAPTCHA
- Slow

## Using bibcure modules

Given a text file like
```
10.1063/1.3149495
10.7717/peerj.3714
.....
```
download all pdf's
```
$ doi2bib -i input_dois.txt > refs.bib
$ scihub2pdf -i refs.bib
```
2 changes: 1 addition & 1 deletion scihub2pdf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

__version__ = "0.1.0"
__version__ = "0.2.0"
6 changes: 6 additions & 0 deletions scihub2pdf/bin/scihub2pdf
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ def main():
$ scihub2pdf --title An useful paper
Arxiv...
$ scihub2pdf arxiv:0901.2686
$ scihub2pdf --title arxiv:Periodic table for topological insulators
-----------------------------------------------------
@author: Bruno Messias
@email: [email protected]
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@

setup(
name="scihub2pdf",
version="0.1.0",
version="0.2.0",
packages = find_packages(exclude=["build",]),
# packages = find_packages(),
scripts=["scihub2pdf/bin/scihub2pdf"],
long_description = README_TEXT,
install_requires = ["bibtexparser",
Expand All @@ -20,10 +19,10 @@
"lxml"],
include_package_data=True,
license="GPLv3",
description="Downloads pdfs via a DOI number, article title or a bibtex file, sci-hub",
description="Downloads pdfs via a DOI number(or arxivId), article title or a bibtex file, sci-hub",
author="Bruno Messias",
author_email="[email protected]",
download_url="https://github.com/bibcure/scihub2pdf/archive/0.1.0.tar.gz",
download_url="https://github.com/bibcure/scihub2pdf/archive/0.2.0.tar.gz",
keywords=["bibtex", "sci-hub", "libgen", "doi", "science","scientific-journals"],

classifiers=[
Expand Down

0 comments on commit b09aaa6

Please sign in to comment.