File size: 1,615 Bytes
011bd7a | 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 | """Fetch data from https://api.biorxiv.org/ and keep useful information"""
from __future__ import annotations
import gzip
import jsonlines
import requests
from tqdm import tqdm
api = "https://api.biorxiv.org/details/medrxiv/2021-01-01/2022-05-10/"
articles = []
cursor = 0
count = 0
while True:
if count % 10 == 0:
print(count)
r = requests.get(f"{api}{cursor}")
if r.status_code == 200:
data = r.json()
tmp = data["collection"]
articles.extend(tmp)
if len(tmp) == 0:
break
cursor += len(tmp)
count += 1
old_lines = articles
new_lines = []
split = 0
for idx, line in enumerate(tqdm(old_lines)):
# Write split each 100k lines
if idx > 0 and idx % 100000 == 0:
file_name = f"raw_medrxiv/train_{split}"
with jsonlines.open(f"{file_name}.jsonl", "w") as writer:
writer.write_all(new_lines)
with open(f"{file_name}.jsonl", "rb") as f_in:
with gzip.open(f"{file_name}.jsonl.gz", "wb") as f_out:
f_out.writelines(f_in)
new_lines = []
split += 1
new_json = {
"id": line["doi"],
"title": line["title"],
"abstract": line["abstract"],
"category": line["category"],
}
new_lines.append(new_json)
# Flush buffer
file_name = f"raw_medrxiv/train_{split}"
with jsonlines.open(f"{file_name}.jsonl", "w") as writer:
writer.write_all(new_lines)
with open(f"{file_name}.jsonl", "rb") as f_in:
with gzip.open(f"{file_name}.jsonl.gz", "wb") as f_out:
f_out.writelines(f_in)
new_lines = []
split += 1
|