-
Notifications
You must be signed in to change notification settings - Fork 1
/
pure_cols_checker.py
94 lines (90 loc) · 2.75 KB
/
pure_cols_checker.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
orig = ['Unnamed: 0',
'Title of the contribution in original language',
'Current publication status > Date',
'Subtitle of the contribution in original language',
'Type',
'Workflow > Step',
'Original language',
'Electronic version(s) of this work > DOI (Digital Object Identifier)[1]',
'Organisations > Organisational unit[1]',
'Organisations > Organisational unit[2]',
'Organisations > Organisational unit[3]',
'Organisations > Organisational unit[4]',
'Organisations > Organisational unit[5]',
'Organisations > Organisational unit[6]',
'Organisations > Organisational unit[7]',
'Organisations > Organisational unit[8]',
'Organisations > Organisational unit[9]',
'Organisations > Organisational unit[10]',
'Journal > Journal[1]:Titles',
'Journal > Journal[1]:ISSNs',
'UUID',
'DOI',
'orig_doi',
'upw_doi',
'upw_doi_lowercase',
'upw_error',
'upw_error_message',
'upw_free_fulltext_url',
'upw_is_boai_license',
'upw_is_free_to_read',
'upw_is_subscription_journal',
'upw_license',
'upw_oa_color_x',
'upw_oa_color_verbose',
'ff',
'ff_provided_organization_string',
'ff_match',
'ff_score',
'ff_terms',
'ff_message',
'ff_match_subgroup',
'DOI_isnull',
'pub_uuid',
'pure_year']
new = ['Unnamed: 0',
'Title of the contribution in original language',
'Current publication status > Date',
'Subtitle of the contribution in original language',
'Type',
'Workflow > Step',
'Original language',
'Electronic version(s) of this work > DOI (Digital Object Identifier)[1]',
'Organisations > Organisational unit[1]',
'Organisations > Organisational unit[2]',
'Organisations > Organisational unit[3]',
'Organisations > Organisational unit[4]',
'Organisations > Organisational unit[5]',
'Organisations > Organisational unit[6]',
'Organisations > Organisational unit[7]',
'Organisations > Organisational unit[8]',
'Organisations > Organisational unit[9]',
'Organisations > Organisational unit[10]',
'Journal > Journal[1]:Titles',
'Journal > Journal[1]:ISSNs',
'UUID',
'DOI',
'orig_doi',
'own_doi_lowercase',
'upw_doi',
'upw_doi_lowercase',
'upw_error',
'upw_error_message',
'upw_free_fulltext_url',
'upw_is_boai_license',
'upw_is_free_to_read',
'upw_is_subscription_journal',
'upw_license',
'upw_oa_color_x',
'upw_oa_color_verbose',
'ff',
'ff_provided_organization_string',
'ff_match',
'ff_score',
'ff_terms',
'ff_message',
'ff_match_subgroup',
'DOI_isnull',
'pub_uuid',
'pure_year']
print(orig == new)