-
Notifications
You must be signed in to change notification settings - Fork 0
/
req.py
39 lines (31 loc) · 1.22 KB
/
req.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
import json
import random
import bisect
from array import array
def get_url(send_url,params="None"):
from browser import document, ajax
#paramsが設定されていた場合に実行(パラメータをセット)
if params != "None":
send_url = send_url + "?isbn=" + params
# send a POST request to the url
# Bind the complete State to the on_get_complete function
req = ajax.Ajax()
req.open('GET', send_url, False)
req.set_header('content-type', 'application/x-www-form-urlencoded')
req.send()
return req
# すべてのISBNを取得
res = get_url('https://api.openbd.jp/v1/coverage')
seq = json.loads(res.text)
# isbnが9784からはじまるものだけにする
seq = seq[bisect.bisect_left(seq,'9784000000000'):bisect.bisect_right(seq,'9784999999999')]
# ランダムに500冊を選んでjsonを取得
ranseq = random.sample(seq, 500)
# 書籍情報の取得
res = get_url('https://api.openbd.jp/v1/get', params='%2C'.join(ranseq))
seq = json.loads(res.text)
# titleを取得
titles = array('u',[r["onix"]["DescriptiveDetail"]["TitleDetail"]["TitleElement"]["TitleText"].get("content") for r in seq])
# print(titles)
# 使わない変数を削除してメモリを確保
del seq,res,ranseq