-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.py
68 lines (66 loc) · 1.65 KB
/
config.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
LOGGING_LEVEL="INFO"
LOG_STDOUT=True
_API_TOKEN=None
_API_URL=None
_API_MAX_RETRIES = 1
_API_RETRY_SLEEP = 1
DEPRECATED_TITLES=[
r'^Index$',
r'^Index\sto\svolume',
r'^Index\sto\sadverstiser',
r'^Index\sof\sauthors',
r'^Instructions\sto\sauthors',
r'^Author\sIndex',
r'^Materials\sIndex',
r'^Masthead',
r'^Editorial\sBoard',
r'^Editors\/Editorial\sboard',
r'^Board\sof\sEditors',
r'^Editors\scontinued',
r'^Subject\sFields\sof\sEditors',
r'^Diary$',
r'^Graphical\sContents',
r'^Cover$',
r'^Abstract$',
r'^Abstracts$',
r'^Patent\sreport$',
r'^Keyword\sListing',
r'^Keyword\sIndex',
r'^Issue\sInformation',
r'^In\sthis\sIssue',
r'^Instructions\sfor\sauthors',
r'^List\sof\sContents',
r'^Calendar$',
r'^Contents$',
r'^Contents\slist$',
r'^Contents\scontinued',
r'^Contents\sof\svolume',
r'^Contents:\sGraphical\sAbstracts',
r'^Other\sContents',
r'^Graphical\sabstract',
r'^Table\sof\scontents',
r'^\s*$',
r'Information\sfor\sauthors',
r'^[OI][BF]C',
r'Forthcoming\smeeting',
r'advertisement',
r'Front\scover',
r'Back\scover',
r'Blank\spage',
r'^Subject\sIndex',
r'Software\ssurvey\ssection',
r'^Patents\sAlert',
r'^Guide\sfor\sAuthors',
r'^Publications\sReceived',
r'^Forthcoming\sPapers',
r'^Forthcoming\sArticles',
r'^Volume\scontents',
r'^Forthcoming\sregular\sarticles',
r'^Outside\sFront\sCover',
r'^Inside\sBack\sCover',
r'^Title\sPage',
r'^Title\sand\seditorial\sboard',
r'^Title\/Ed\sboard',
r'^Title\sEditorial\sBoard',
r'^Editorial\sAdvisory\sBoard',
]