forked from bibcure/bibcure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
182 lines (106 loc) · 3.16 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
Description(Beta version)
=========================
|image0| Bibcure helps in boring tasks by keeping your bibfile up to
date and normalized.
Requirements
------------
Bibcure uses the wonderful `Bibtex
parser <https://github.com/sciunto-org/python-bibtexparser>`__. In this
moment we waiting for new release of bibtexparser to solve some bugs.
Install
=======
::
$ sudo pip install bibcure
scihub2pdf(beta)
----------------
|image1| If you want download articles via a DOI number, article title
or a bibtex file, using the database of libgen or sci-hub, see
`bibcure/scihub2pdf <https://github.com/bibcure/scihub2pdf>`__
Features and how to use
=======================
bibcure
-------
Given a bib file...
::
$ bibcure -i input.bib -o output.bib
- check sure the Arxiv items have been published, then update
them(requires internet connection)
- complete all fields(url, journal, etc) of all bib items using DOI
number(requires internet connection)
- find and create DOI number associated with each bib item which has
not DOI field(requires internet connection)
- abbreviate jorunals names
doi2bib
-------
Given a DOI number...
::
$ doi2bib 10.1038/s41524-017-0032-0
- get bib item given a doi(requires internet connection)
You can easily append a bib into a bibfile, just do
::
$ doi2bib 10.1038/s41524-017-0032-0 >> file.bib
You also can generate a bibtex from a txt file containing a list of DOIs
::
$ doi2bib --input file_with_dois.txt --output refs.bib
title2bib
---------
Given a title...
::
$ title2bib An useful paper
- search papers related and return a bib for the selected
paper(requires internet connection)
You can easily append a bib into a bibfile, just do
::
$ title2bib An useful paper --first >> file.bib
You also can generate a bibtex from a txt file containing a list of
"titles"
::
$ title2bib --input file_with_titles.txt --output refs.bib --first
arxivcheck
----------
Given a arxiv id...
::
$ arxivcheck 1601.02785
- check if has been published, and then returns the updated bib
(requires internet connection)
Given a title...
::
$ arxivcheck --title An useful paper published on arxiv
search papers related and return a bib the first item. You can easily
append a bib into a bibfile, just do
::
$ arxivcheck --title An useful paper published on arxiv >> file.bib
You also can interact with results, just pass --ask parameter
::
$ arxivcheck --ask --title An useful paper published on arxiv
scihub2pdf
==========
Given a bibtex file
::
$ scihub2pdf -i input.bib
Given a DOI number...
::
$ scihub2pdf 10.1038/s41524-017-0032-0
Given a title...
::
$ scihub2bib --title An useful paper
Location folder as argument
::
$ scihub2pdf -i input.bib -l somefoler/
Use libgen instead sci-hub
::
$ scihub2pdf -i input.bib --uselibgen
Sci-Hub vs LibGen
-----------------
Sci-hub:
~~~~~~~~
- Stable
- Annoying CAPTCHA
- Fast
Libgen
~~~~~~
- Unstalbe
- No CAPTCHA
- Slow
.. |image0| image:: https://raw.githubusercontent.com/bibcure/logo/master/logo_64x64.png
.. |image1| image:: https://raw.githubusercontent.com/bibcure/logo/master/sci_hub_64.png