-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathutils.py
59 lines (47 loc) · 1.5 KB
/
utils.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
import openreview
import csv
from config import EMAIL, PASSWORD
import dill
def get_client():
"""
Returns a tuple of (client_v1, client_v2) for both OpenReview API versions.
"""
client_v1 = openreview.Client(
baseurl='https://api.openreview.net',
username=EMAIL,
password=PASSWORD
)
client_v2 = openreview.api.OpenReviewClient(
baseurl='https://api2.openreview.net',
username=EMAIL,
password=PASSWORD
)
return client_v1, client_v2
def papers_to_list(papers):
all_papers = []
for grouped_venues in papers.values():
for venue_papers in grouped_venues.values():
for paper in venue_papers:
all_papers.append(paper)
return all_papers
def to_csv(papers_list, fpath):
def write_csv():
with open(fpath, 'a+') as fp:
fp.seek(0, 0) # seek to beginning of file and then read
previous_contents = fp.read()
writer = csv.DictWriter(fp, fieldnames=field_names)
if previous_contents.strip()=='':
writer.writeheader()
writer.writerows(papers_list)
if len(papers_list)>0:
field_names = list(papers_list[0].keys()) # choose one of the papers, get all the keys as they'll be same for rest of them
write_csv()
def save_papers(papers, fpath):
with open(fpath, 'wb') as fp:
dill.dump(papers, fp)
print(f'Papers saved at: {fpath}')
def load_papers(fpath):
with open(fpath, 'rb') as fp:
papers = dill.load(fp)
print(f'Papers loaded from: {fpath}')
return papers