-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.py
More file actions
92 lines (90 loc) · 2.28 KB
/
config.py
File metadata and controls
92 lines (90 loc) · 2.28 KB
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
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'^Inhalt:',
r'^Vorschau:',
r'^Titelbild:',
r'^Instructions\sto\sauthors',
r'^International\seditorial\sadvisory\sboard',
r'^IEEE.*Information$',
r'^Author\sIndex',
r'^AVIS\sAUX\sAUTEURS',
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'^Cover\s[0-9]$',
r'^Abstract$',
r'^Abstracts$',
r'^Patent\sreport$',
r'^Keyword\sListing',
r'^Keyword\sIndex',
r'^Issue\sEditorial\sMasthead',
r'^Issue\sPublication\sInformation',
r'^Issue\sInformation',
r'^In\sthis\sIssue',
r'^Issue\sImage$',
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'^Full\sIssue',
r'^Fronti[es]piece',
r'^Other\sContents',
r'^Graphical\sabstract',
r'^Graphical\sAbstract',
r'^Table\sof\scontents',
r'^Table\sof\sContents',
r'^\s*$',
r'Information\sfor\sauthors',
r'\[End\s[Mm]atter\]',
r'\[Front\s[Mm]atter\]',
r'\[List\sof\sStaff\]',
r'\[Breaker\sPage\]',
r'^[OI][BF]C',
r'Forthcoming\smeeting',
r'advertisement',
r'Frontmatter',
r'Front\scover',
r'Front-cover',
r'Back\scover',
r'Blank\spage',
r'^Subject\sIndex',
r'Software\ssurvey\ssection',
r'^Patents\sAlert',
r'^Guide\sfor\sAuthors',
r'^Guidelines\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'^Titelei$',
r'^Sonstiges$',
r'^Title\s[Pp]age',
r'^\[Title\s[Pp]age',
r'^Title\sand\seditorial\sboard',
r'^Title\/Ed\sboard',
r'^Title\sEditorial\sBoard',
r'^Editorial\sAdvisory\sBoard',
]