-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconvertbibliography.py
executable file
·166 lines (157 loc) · 5.65 KB
/
convertbibliography.py
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
#!/usr/bin/env python3
import argparse
import re
import shutil
import sys
import cb_customs
from bibtexparser.bparser import BibTexParser
from bibtexparser.bwriter import BibTexWriter
from bibtexparser.customization import *
def fix_keys(l):
""" list -> list
Take a list that represents lines.
Find lines which are the start of a bibtex entry without a key.
Add dummy keys to those lines.
Remove spaces from keys.
>>> fix_keys(
['@book{foo bar,', '@article{', ' Author = {Thomas Hodgson}', '}']
)
['@book{foobar,', '@article{Foo1,', ' Author = {Thomas Hodgson}', '}']
"""
i = 1
j = 0
while j < len(l):
if re.fullmatch('@\\w+\\s*{,{0,1}', l[j].strip()):
l[j] = l[j][:l[j].find('{')+1] + 'Foo' + str(i) + ','
i += 1
elif re.match('@', l[j].strip()):
# Find where the key starts
start = re.search('{', l[j]).end()
# Get rid of any non word characters
key = re.sub('\W+', '', l[j][start:])
# Put it back together; add a comma which will have been removed
l[j] = l[j][:start] + key + ','
j += 1
return l
def customizations(record):
"""Use some functions delivered by the library
:param record: a record
:returns: -- customized record
"""
# This needs to come before authors are dealt with
# otherwise there are encoding problems
record = convert_to_unicode(record)
record = page_double_hyphen(record)
record = author(record)
record = editor(record)
# This is needed after `author` is called to allow writing
record = cb_customs.join_author_editor(record)
record = cb_customs.titlecase_name(record)
record = cb_customs.remove_booktitle(record)
record = cb_customs.language(record)
record = cb_customs.case_title(record)
record = cb_customs.journaltitle(record)
# This should come after `journaltitle`is called
record = cb_customs.add_definite_to_journaltitles(record)
record = cb_customs.remove_pages_from_books_and_collections(record)
record = cb_customs.non_page_hyphens(record)
record = cb_customs.dashes(record)
record = cb_customs.biblatex_page_ranges(record)
record = cb_customs.remove_abstract(record)
record = cb_customs.remove_ISBN(record)
record = cb_customs.remove_ISSN(record)
record = cb_customs.remove_epub(record)
record = cb_customs.remove_copyright(record)
record = cb_customs.remove_publisher(record)
record = cb_customs.remove_link(record)
record = cb_customs.escape_characters(record)
record = cb_customs.remove_ampersand(record)
record = cb_customs.jstor(record)
record = cb_customs.citeulike(record)
record = cb_customs.edition(record)
record = cb_customs.multivolume(record)
record = cb_customs.publisher(record)
record = cb_customs.strip_doi(record)
record = cb_customs.remove_keyword(record)
record = cb_customs.empty_fields(record)
record = cb_customs.remove_protection(record)
record = cb_customs.subtitles(record)
record = cb_customs.remove_series(record)
record = cb_customs.remove_month(record)
record = cb_customs.remove_numpages(record)
record = cb_customs.remove_eprint(record)
record = cb_customs.year_to_date(record)
# The order of the following matters
record = cb_customs.issue_to_number(record)
record = cb_customs.remove_leading_zeros(record)
if not args.nodoi:
try:
record = cb_customs.get_doi(record)
# If there is a connection error stop trying to get DOIs
except cb_customs.requests.exceptions.ConnectionError:
if args.verbose:
print(
"I couldn't connect to the CrossRef API. "
"Perhaps you are not connected to the internet?"
)
args.nodoi = True
return record
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument(
'--input',
help='Path to the input file'
)
parser.add_argument(
'--no-doi',
dest='nodoi',
action='store_true',
help="Don't look for DOIs from CrossRef"
)
parser.add_argument(
'--verbose',
dest='verbose',
action='store_true',
help="Print messages"
)
args = parser.parse_args()
if args.input:
bib = args.input
try:
shutil.copy(bib, bib + '.backup')
if args.verbose:
print(
"I have made a backup of the orignal file at {}.backup"
.format(bib)
)
with open(bib, 'r', encoding='utf-8') as biblatex:
content = biblatex.read()
except FileNotFoundError:
if args.verbose:
print("I couldn't find the file {}.".format(bib))
sys.exit()
else:
content = sys.stdin.read()
# Find the start of the first record
try:
start = re.search('@', content).start()
except AttributeError:
if args.verbose:
print("The file I was given didn't contain any records.")
sys.exit()
content = content[start:].split('\n')
# Provide dummy citekeys
content = fix_keys(content)
fixed_content = '\n'.join(content)
bibliography = BibTexParser(
fixed_content,
customization=customizations,
ignore_nonstandard_types=False
# Otherwise bibtexparser will complain if I give it a collection
)
output = BibTexWriter().write(bibliography)
if args.input:
with open(bib, 'w', encoding='utf-8') as biblatex:
biblatex.write(output)
else:
sys.stdout.write(output)