-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluscient_api.py
37 lines (30 loc) · 943 Bytes
/
luscient_api.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
import requests
import os
import json
from pprint import pprint
CWD = os.path.abspath(os.path.dirname(__file__))
DATA_DIR = os.path.join(CWD, 'data')
INFILE = os.path.join(DATA_DIR, 'input.json')
OUTFILE = os.path.join(DATA_DIR, 'output.json')
API_URL = 'http://www.luscient.io/api'
def process(text):
print(text)
r = requests.post(API_URL, json={'text': text})
if not r.status_code == 400:
result = r.json()
return result
print('Something went wrong. API returned:\n\n{}'.format(r.text))
return None
results = []
with open(INFILE, 'rb') as f:
input_ = json.load(f)
for item in input_:
response = process(item['text'])
if response:
response['reference'] = {
'source': 'PMC',
'id': item['pmcid']
}
results.append(response)
with open(OUTFILE, 'w') as f:
json.dump(results, f, ensure_ascii=False, indent=2)