(第2课)【初识python爬虫】

本文参考6节课掌握python爬虫视频讲座

json

json是一种数据交互格式,是字符串,(看起来像python的字典,列表)。很多手机版页面发请求后,返回的是json字符串,所以我们也调成手机页面再进行下面的操作。以百度翻译为例看下:

这里写图片描述

哪里会返回json数据格式

浏览器网页切换成手机版,抓包APP

json字符串

#用手机版的页面,才可以实现下面的功能

import  requests

url = "http://fanyi.baidu.com/basetrans"
headers={"User-Agent":"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Mobile Safari/537.36"}
data = {"query":"中华人民共和国","from":"zh","to":"en"}
response=requests.post(url,headers=headers,data=data)
print(response.content.decode())
print(type(response.content.decode()))

这里写图片描述

json字符串转换成python的类型

json.loads(json字符串)
#用手机版的页面,才可以实现下面的功能


import  requests
import json

url = "http://fanyi.baidu.com/basetrans"

query_str=input("请输入要翻译的中文:")

headers={"User-Agent":"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Mobile Safari/537.36"}
data = {"query":query_str,"from":"zh","to":"en"}
response=requests.post(url,headers=headers,data=data)

html_str=response.content.decode();#json字符串

dict_ret=json.loads(html_str)#转化成python中的类型,这里应该是字典
print(type(dict_ret))
ret=dict_ret["trans"][0]["dst"];
print("翻译结果:"+ret)

这里写图片描述

python的数据类型转换成json字符串

json.dumps("a":"aa","b":"bb")
注意:dumps这个方法中可以加入参数
1)ensure_ascii:让中文显示成中文,而不是ASCII码
2)indent:让显示的下一行在上一行基础上换行且空格,调整了显示格式,便于阅读,如果不设置indent的值的话,其实将显示一行

下面以豆瓣读书为例,切换到手机版,找到豆瓣读书分类中的小说,然后看下图:
这里写图片描述
从network中的每个URL地址找,对每个请求到的来说,在右边的preview中用Ctrl+F搜索,找小说《面包会有的》,如果搜索到了,就用这个URL来进行爬虫了!下图中的红框圈出的部分没有用,可以删除掉,这里我尝试下,把红框圈出的部分中的数字改变一下,运行程序后,对应的打印出来的那个也会跟着变。所以以后遇到这个红框圈出的东西(&callback=jsonp1),可以直接删除掉(如果不删除,则爬到的不是json字符串,所以把这个多余的东西删除掉吧)。
这里写图片描述

import  requests
import json

url="https://m.douban.com/rexxar/api/v2/subject_collection/filter_book_fiction_hot/items?os=android&for_mobile=1&start=0&count=18&loc_id=0&_=0"
#如果访问不到,可以加上Referer这个
headers={
    "User-Agent":"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Mobile Safari/537.36",
    "Referer":"https://m.douban.com/book/novel"
}
response = requests.get(url,headers=headers)
json_str=response.content.decode();#json字符串
ret=json.loads(json_str)#json字符串转为python的类型(这里是字典)

with open("doubanBook.txt","w",encoding="utf-8") as f:
    f.write(json.dumps(ret,ensure_ascii=False,indent=2))

这里写图片描述

完成豆瓣读书小说类的爬取

观察规律,发现每18个换一页,然后写爬虫,爬取
这里写图片描述
这里写图片描述
其实上面的总数而言,并不一定能获取到那么多!
这里写图片描述

import  requests
import json
from retrying import  retry

headers={
    "User-Agent":"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Mobile Safari/537.36",
    "Referer":"https://m.douban.com/book/novel"
}

@retry(stop_max_attempt_number=3)
def _parse_url(url):
    print("*"*100)
    response=requests.get(url,headers=headers,timeout=5)
    return  response.content.decode()

def parse_url(url):
    try:
        html_str=_parse_url(url)
    except:
        html_str=None
    return html_str

class Spider:

    def __init__(self):
        #注意下面的start的值用传参方式来,并且一定注意要删除&callback=jsonp1,否则爬到的会多个jsonp1,去掉这个才是json字符串
        self.tmp_url="https://m.douban.com/rexxar/api/v2/subject_collection/filter_book_fiction_hot/items?os=android&for_mobile=1&start={}&count=18&loc_id=0&_=0"
    def get_content_list(self,html_str):#获取数据
        dict_data=json.loads(html_str)
        #还是查看下,知道通过这个获得
        content_list=dict_data["subject_collection_items"]
        return  content_list

    def save_content_list(self,content_list):
        #a意思是追加
        with open("doubanBook.json","a",encoding="utf-8") as f:
            for content in content_list:
                f.write(json.dumps(content,ensure_ascii=False))
                f.write("\n")
        print("保存成功")

    def run(self):#步骤
        num=0;
        total=259
        #注意total的值
        while num<total+18:
            #1.开始的url
            start_url=self.tmp_url.format(num)
            #2.发请求,获得响应
            html_str=parse_url(start_url)
            #3.获取数据
            content_list=self.get_content_list(html_str)
            #4.保存
            self.save_content_list(content_list)
            #5.写下一页的url地址,继续爬
            num+=18

if __name__ == '__main__':
    doubanBook=Spider()
    doubanBook.run()


url="https://m.douban.com/rexxar/api/v2/subject_collection/filter_book_fiction_hot/items?os=android&for_mobile=1&start=0&count=18&loc_id=0&_=0"
#如果访问不到,可以加上Referer这个

response = requests.get(url,headers=headers)
json_str=response.content.decode();#json字符串
ret=json.loads(json_str)#json字符串转为python的类型(这里是字典)

with open("doubanBook.txt","w",encoding="utf-8") as f:
    f.write(json.dumps(ret,ensure_ascii=False,indent=2))

doubanBook.json文件如下:

{"original_price": null, "rating": {"count": 970, "max": 10, "value": 7.9}, "actions": ["可阅读"], "date": null, "year": ["2015-7-1"], "card_subtitle": "苗炜 / 2015 / 译林出版社", "id": "26461519", "title": "面包会有的", "label": null, "type": "book", "description": "", "price": null, "press": ["译林出版社"], "info": "苗炜/译林出版社/2015-7-1", "url": "https://m.douban.com/book/subject/26461519/", "release_date": null, "author": ["苗炜"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28314859.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26461519", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4111, "max": 10, "value": 8.8}, "actions": [], "date": null, "year": ["2015-11-1"], "card_subtitle": "[哥伦比亚] 加西亚·马尔克斯 / 2015 / 南海出版公司", "id": "26628811", "title": "世上最美的溺水者", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[哥伦比亚] 加西亚·马尔克斯/南海出版公司/2015-11-1", "url": "https://m.douban.com/book/subject/26628811/", "release_date": null, "author": ["[哥伦比亚] 加西亚·马尔克斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28322776.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26628811", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2181, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2015-4"], "card_subtitle": "秦明 / 2015 / 湖南文艺出版社", "id": "26349251", "title": "清道夫", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "秦明/湖南文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26349251/", "release_date": null, "author": ["秦明"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28039994.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26349251", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1258, "max": 10, "value": 7.8}, "actions": [], "date": null, "year": ["2015-10-15"], "card_subtitle": "尼罗 / 2015 / 长江出版社", "id": "26603434", "title": "无心法师 第三卷", "label": null, "type": "book", "description": "", "price": null, "press": ["长江出版社"], "info": "尼罗/长江出版社/2015-10-15", "url": "https://m.douban.com/book/subject/26603434/", "release_date": null, "author": ["尼罗"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28301481.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26603434", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 813, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2015-11-1"], "card_subtitle": "蒋胜男 / 2015 / 浙江文艺出版社", "id": "26655263", "title": "芈月传(1-6)", "label": null, "type": "book", "description": "", "price": null, "press": ["浙江文艺出版社"], "info": "蒋胜男/浙江文艺出版社/2015-11-1", "url": "https://m.douban.com/book/subject/26655263/", "release_date": null, "author": ["蒋胜男"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28349261.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26655263", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2638, "max": 10, "value": 6.7}, "actions": [], "date": null, "year": ["2015-10"], "card_subtitle": "[日] 村上春树 / 2015 / 北京十月文艺出版社", "id": "26628823", "title": "图书馆奇谈", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "[日] 村上春树/北京十月文艺出版社/2015-10", "url": "https://m.douban.com/book/subject/26628823/", "release_date": null, "author": ["[日] 村上春树"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28306733.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26628823", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 27873, "max": 10, "value": 7.3}, "actions": [], "date": null, "year": ["2016-1-1"], "card_subtitle": "高铭 / 2016 / 北京联合出版公司", "id": "26666472", "title": "天才在左 疯子在右(完整版)", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "高铭/北京联合出版公司/2016-1-1", "url": "https://m.douban.com/book/subject/26666472/", "release_date": null, "author": ["高铭"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28350186.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26666472", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 693, "max": 10, "value": 7.2}, "actions": ["可阅读"], "date": null, "year": ["2015-4"], "card_subtitle": "飞行官小北 / 2015 / 湖南文艺出版社", "id": "26358169", "title": "那时,我们还不怕相爱", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "飞行官小北/湖南文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26358169/", "release_date": null, "author": ["飞行官小北"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28040330.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26358169", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 17321, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2016-1-1"], "card_subtitle": "辛夷坞 / 2016 / 百花洲文艺出版社", "id": "26671435", "title": "我们", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "辛夷坞/百花洲文艺出版社/2016-1-1", "url": "https://m.douban.com/book/subject/26671435/", "release_date": null, "author": ["辛夷坞"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28348000.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26671435", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2453, "max": 10, "value": 6.6}, "actions": ["可阅读"], "date": null, "year": ["2015-10"], "card_subtitle": "(英)宝拉·霍金斯 / 2015 / 中信出版社", "id": "26609809", "title": "火车上的女孩", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "(英)宝拉·霍金斯/中信出版社/2015-10", "url": "https://m.douban.com/book/subject/26609809/", "release_date": null, "author": ["(英)宝拉·霍金斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28301035.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26609809", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1345, "max": 10, "value": 7.3}, "actions": ["可阅读"], "date": null, "year": ["2015-11"], "card_subtitle": "鲍鲸鲸 / 2015 / 北京联合出版公司", "id": "26628022", "title": "我的盖世英熊", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "鲍鲸鲸/北京联合出版公司/2015-11", "url": "https://m.douban.com/book/subject/26628022/", "release_date": null, "author": ["鲍鲸鲸"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28302362.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26628022", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2797, "max": 10, "value": 8.5}, "actions": [], "date": null, "year": ["2015-3"], "card_subtitle": "三浦紫苑 / 2015 / 上海文艺出版社", "id": "26261735", "title": "编舟记", "label": null, "type": "book", "description": "", "price": null, "press": ["上海文艺出版社"], "info": "三浦紫苑/上海文艺出版社/2015-3", "url": "https://m.douban.com/book/subject/26261735/", "release_date": null, "author": ["三浦紫苑"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28041280.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26261735", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5026, "max": 10, "value": 8.6}, "actions": [], "date": null, "year": ["2015-12"], "card_subtitle": "twentine / 2015 / 江苏文艺出版社", "id": "26680113", "title": "那个不为人知的故事", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "twentine/江苏文艺出版社/2015-12", "url": "https://m.douban.com/book/subject/26680113/", "release_date": null, "author": ["twentine"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28357474.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26680113", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2659, "max": 10, "value": 8.4}, "actions": [], "date": null, "year": ["2015-12"], "card_subtitle": "尾鱼 / 2015 / 江苏文艺出版社", "id": "26674263", "title": "司藤", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "尾鱼/江苏文艺出版社/2015-12", "url": "https://m.douban.com/book/subject/26674263/", "release_date": null, "author": ["尾鱼"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s29713686.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26674263", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1494, "max": 10, "value": 8.8}, "actions": [], "date": null, "year": ["2015-2-5"], "card_subtitle": "早坂吝 / 2015 / 講談社", "id": "26285818", "title": "虹の歯ブラシ 上木らいち発散", "label": null, "type": "book", "description": "", "price": null, "press": ["講談社"], "info": "早坂吝/講談社/2015-2-5", "url": "https://m.douban.com/book/subject/26285818/", "release_date": null, "author": ["早坂吝"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28001091.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26285818", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5413, "max": 10, "value": 7.6}, "actions": [], "date": null, "year": ["2015-10-1"], "card_subtitle": "常书欣 / 2015 / 海南出版社", "id": "26613724", "title": "余罪", "label": null, "type": "book", "description": "", "price": null, "press": ["海南出版社"], "info": "常书欣/海南出版社/2015-10-1", "url": "https://m.douban.com/book/subject/26613724/", "release_date": null, "author": ["常书欣"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28298404.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26613724", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4405, "max": 10, "value": 7.9}, "actions": [], "date": null, "year": ["2015-4-1"], "card_subtitle": "东野圭吾 / 2015 / 南海出版公司", "id": "26298572", "title": "彷徨之刃", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "东野圭吾/南海出版公司/2015-4-1", "url": "https://m.douban.com/book/subject/26298572/", "release_date": null, "author": ["东野圭吾"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28035637.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26298572", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1111, "max": 10, "value": 7.8}, "actions": [], "date": null, "year": ["2015-7"], "card_subtitle": "遇瑾 / 2015 / 中国友谊出版公司", "id": "26434548", "title": "别和她说话", "label": null, "type": "book", "description": "", "price": null, "press": ["中国友谊出版公司"], "info": "遇瑾/中国友谊出版公司/2015-7", "url": "https://m.douban.com/book/subject/26434548/", "release_date": null, "author": ["遇瑾"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28119394.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26434548", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4603, "max": 10, "value": 7.7}, "actions": ["可阅读"], "date": null, "year": ["2016-1-1"], "card_subtitle": "[美] 朗·霍尔(Ron Hall) [美] 丹佛·摩尔(Denver Moore) / 2016 / 湖南文艺出版社", "id": "10512506", "title": "世界上的另一个你", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "[美] 朗·霍尔(Ron Hall)/[美] 丹佛·摩尔(Denver Moore)/湖南文艺出版社/2016-1-1", "url": "https://m.douban.com/book/subject/10512506/", "release_date": null, "author": ["[美] 朗·霍尔(Ron Hall)"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28371665.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/10512506", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1148, "max": 10, "value": 6.1}, "actions": ["可阅读"], "date": null, "year": ["2015-12"], "card_subtitle": "天下霸唱 / 2015 / 群言出版社", "id": "26671008", "title": "摸金校尉之九幽将军", "label": null, "type": "book", "description": "", "price": null, "press": ["群言出版社"], "info": "天下霸唱/群言出版社/2015-12", "url": "https://m.douban.com/book/subject/26671008/", "release_date": null, "author": ["天下霸唱"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28352501.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26671008", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2324, "max": 10, "value": 8.2}, "actions": ["可阅读"], "date": null, "year": ["2015-6"], "card_subtitle": "(土耳其)爱诗乐·沛克 / 2015 / 北京联合出版公司", "id": "26387640", "title": "忧伤的时候,到厨房去", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "(土耳其)爱诗乐·沛克/北京联合出版公司/2015-6", "url": "https://m.douban.com/book/subject/26387640/", "release_date": null, "author": ["(土耳其)爱诗乐·沛克"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28070058.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26387640", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1393, "max": 10, "value": 6.7}, "actions": ["可阅读"], "date": null, "year": ["2015-8"], "card_subtitle": "七堇年 / 2015 / 九州出版社", "id": "26437752", "title": "灯下尘", "label": null, "type": "book", "description": "", "price": null, "press": ["九州出版社"], "info": "七堇年/九州出版社/2015-8", "url": "https://m.douban.com/book/subject/26437752/", "release_date": null, "author": ["七堇年"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28259745.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26437752", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1916, "max": 10, "value": 8.7}, "actions": ["可阅读"], "date": null, "year": ["2015-2"], "card_subtitle": "[美]伊丽莎白·吉尔伯特(Elizabeth Gilbert) / 2015 / 中信出版社", "id": "26300508", "title": "万物的签名", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "[美]伊丽莎白·吉尔伯特(Elizabeth Gilbert)/中信出版社/2015-2", "url": "https://m.douban.com/book/subject/26300508/", "release_date": null, "author": ["[美]伊丽莎白·吉尔伯特(Elizabeth Gilbert)"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28017203.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26300508", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2122, "max": 10, "value": 7.7}, "actions": [], "date": null, "year": ["2015-10"], "card_subtitle": "[德] 丹尼尔‧凯曼 / 2015 / 南海出版公司", "id": "26320883", "title": "丈量世界", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[德] 丹尼尔‧凯曼/南海出版公司/2015-10", "url": "https://m.douban.com/book/subject/26320883/", "release_date": null, "author": ["[德] 丹尼尔‧凯曼"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s29302902.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26320883", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1198, "max": 10, "value": 7.8}, "actions": ["可阅读"], "date": null, "year": ["2015-5"], "card_subtitle": "颜歌 / 2015 / 广西师范大学出版社", "id": "26384375", "title": "平乐镇伤心故事集", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "颜歌/广西师范大学出版社/2015-5", "url": "https://m.douban.com/book/subject/26384375/", "release_date": null, "author": ["颜歌"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28066592.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26384375", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4964, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2015-12"], "card_subtitle": "江南 / 2015 / 长江出版社", "id": "26647621", "title": "龙族Ⅳ", "label": null, "type": "book", "description": "", "price": null, "press": ["长江出版社"], "info": "江南/长江出版社/2015-12", "url": "https://m.douban.com/book/subject/26647621/", "release_date": null, "author": ["江南"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28370987.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26647621", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1280, "max": 10, "value": 6.6}, "actions": ["可阅读"], "date": null, "year": ["2015-7-1"], "card_subtitle": "蒋方舟 / 2015 / 九州出版社", "id": "26413330", "title": "故事的结局早已写在开头", "label": null, "type": "book", "description": "", "price": null, "press": ["九州出版社"], "info": "蒋方舟/九州出版社/2015-7-1", "url": "https://m.douban.com/book/subject/26413330/", "release_date": null, "author": ["蒋方舟"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28115644.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26413330", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 16480, "max": 10, "value": 8.8}, "actions": ["可阅读"], "date": null, "year": ["2016-1"], "card_subtitle": "[美] 约翰·威廉斯 / 2016 / 世纪文景/上海人民出版社", "id": "26425831", "title": "斯通纳", "label": null, "type": "book", "description": "", "price": null, "press": ["世纪文景/上海人民出版社"], "info": "[美] 约翰·威廉斯/世纪文景/上海人民出版社/2016-1", "url": "https://m.douban.com/book/subject/26425831/", "release_date": null, "author": ["[美] 约翰·威廉斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28332051.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26425831", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1230, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2015-9-10"], "card_subtitle": "尼罗 / 2015 / 长江出版社", "id": "26596521", "title": "无心法师 第二卷", "label": null, "type": "book", "description": "", "price": null, "press": ["长江出版社"], "info": "尼罗/长江出版社/2015-9-10", "url": "https://m.douban.com/book/subject/26596521/", "release_date": null, "author": ["尼罗"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28286986.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26596521", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1350, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2015-2"], "card_subtitle": "伊坂幸太郎 / 2015 / 新星出版社", "id": "26283162", "title": "单挑", "label": null, "type": "book", "description": "", "price": null, "press": ["新星出版社"], "info": "伊坂幸太郎/新星出版社/2015-2", "url": "https://m.douban.com/book/subject/26283162/", "release_date": null, "author": ["伊坂幸太郎"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27988708.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26283162", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3162, "max": 10, "value": 6.9}, "actions": [], "date": null, "year": ["2015-9"], "card_subtitle": "[日]东野圭吾 / 2015 / 南海出版公司", "id": "26576518", "title": "我的晃荡的青春", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[日]东野圭吾/南海出版公司/2015-9", "url": "https://m.douban.com/book/subject/26576518/", "release_date": null, "author": ["[日]东野圭吾"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28265889.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26576518", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4177, "max": 10, "value": 7.8}, "actions": ["可阅读"], "date": null, "year": ["2015-6"], "card_subtitle": "[日]夏目漱石 / 2015 / 浙江文艺出版社", "id": "26410730", "title": "我是猫", "label": null, "type": "book", "description": "", "price": null, "press": ["浙江文艺出版社"], "info": "[日]夏目漱石/浙江文艺出版社/2015-6", "url": "https://m.douban.com/book/subject/26410730/", "release_date": null, "author": ["[日]夏目漱石"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28124077.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26410730", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2240, "max": 10, "value": 7.8}, "actions": ["可阅读"], "date": null, "year": ["2015-10-1"], "card_subtitle": "方慧 / 2015 / 北京联合出版公司", "id": "26647727", "title": "手机里的男朋友", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "方慧/北京联合出版公司/2015-10-1", "url": "https://m.douban.com/book/subject/26647727/", "release_date": null, "author": ["方慧"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28325507.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26647727", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1787, "max": 10, "value": 7.8}, "actions": [], "date": null, "year": ["2015-2"], "card_subtitle": "不经语 / 2015 / 中国文联出版社", "id": "26289739", "title": "误入浮华", "label": null, "type": "book", "description": "", "price": null, "press": ["中国文联出版社"], "info": "不经语/中国文联出版社/2015-2", "url": "https://m.douban.com/book/subject/26289739/", "release_date": null, "author": ["不经语"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27972194.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26289739", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1693, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2015-1-1"], "card_subtitle": "[日]东野圭吾 / 2015 / 南海出版公司", "id": "25779594", "title": "魔球", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[日]东野圭吾/南海出版公司/2015-1-1", "url": "https://m.douban.com/book/subject/25779594/", "release_date": null, "author": ["[日]东野圭吾"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27887866.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25779594", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2767, "max": 10, "value": 8.2}, "actions": ["可阅读"], "date": null, "year": ["2015-5"], "card_subtitle": "[英] 克里斯蒂娜·贝克·克兰 / 2015 / 湖南文艺出版社", "id": "26349261", "title": "孤儿列车", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "[英] 克里斯蒂娜·贝克·克兰/湖南文艺出版社/2015-5", "url": "https://m.douban.com/book/subject/26349261/", "release_date": null, "author": ["[英] 克里斯蒂娜·贝克·克兰"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28048460.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26349261", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2109, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2015-11-1"], "card_subtitle": "李座峰 / 2015 / 中国华侨出版社", "id": "26648238", "title": "且将生活一饮而尽", "label": null, "type": "book", "description": "", "price": null, "press": ["中国华侨出版社"], "info": "李座峰/中国华侨出版社/2015-11-1", "url": "https://m.douban.com/book/subject/26648238/", "release_date": null, "author": ["李座峰"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28323823.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26648238", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2619, "max": 10, "value": 8.1}, "actions": ["可阅读"], "date": null, "year": ["2015-9"], "card_subtitle": "冶文彪 / 2015 / 北京联合出版公司", "id": "26576515", "title": "清明上河图密码 2", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "冶文彪/北京联合出版公司/2015-9", "url": "https://m.douban.com/book/subject/26576515/", "release_date": null, "author": ["冶文彪"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28272925.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26576515", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 887, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2015-1"], "card_subtitle": "[美]斯特凡尼·莱曼 / 2015 / 中信出版社", "id": "26248587", "title": "美好古董衣店", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "[美]斯特凡尼·莱曼/中信出版社/2015-1", "url": "https://m.douban.com/book/subject/26248587/", "release_date": null, "author": ["[美]斯特凡尼·莱曼"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27983683.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26248587", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 615, "max": 10, "value": 7.8}, "actions": ["可阅读"], "date": null, "year": ["2015-12-1"], "card_subtitle": "颜月溪 / 2015 / 百花洲文艺出版社", "id": "26666471", "title": "夜空最亮的星", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "颜月溪/百花洲文艺出版社/2015-12-1", "url": "https://m.douban.com/book/subject/26666471/", "release_date": null, "author": ["颜月溪"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28342559.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26666471", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1014, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2015-7-1"], "card_subtitle": "须一瓜 / 2015 / 重庆出版社,重庆出版集团", "id": "26533494", "title": "烈日灼心", "label": null, "type": "book", "description": "", "price": null, "press": ["重庆出版社,重庆出版集团"], "info": "须一瓜/重庆出版社,重庆出版集团/2015-7-1", "url": "https://m.douban.com/book/subject/26533494/", "release_date": null, "author": ["须一瓜"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28259687.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26533494", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2950, "max": 10, "value": 7.7}, "actions": ["可阅读"], "date": null, "year": ["2015-8-1"], "card_subtitle": "蕾秋·乔伊斯 / 2015 / 北京联合出版公司", "id": "26584387", "title": "一个人的朝圣2", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "蕾秋·乔伊斯/北京联合出版公司/2015-8-1", "url": "https://m.douban.com/book/subject/26584387/", "release_date": null, "author": ["蕾秋·乔伊斯"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28268198.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26584387", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 586, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2015-6"], "card_subtitle": "曹小优 / 2015 / 长江文艺出版社", "id": "26426662", "title": "你看见我男朋友了吗?", "label": null, "type": "book", "description": "", "price": null, "press": ["长江文艺出版社"], "info": "曹小优/长江文艺出版社/2015-6", "url": "https://m.douban.com/book/subject/26426662/", "release_date": null, "author": ["曹小优"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28114686.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26426662", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1530, "max": 10, "value": 8.3}, "actions": ["可阅读"], "date": null, "year": ["2015-2"], "card_subtitle": "[日] 小林泰三 / 2015 / 雅众文化/新星出版社", "id": "26280924", "title": "看海的人", "label": null, "type": "book", "description": "", "price": null, "press": ["雅众文化/新星出版社"], "info": "[日] 小林泰三/雅众文化/新星出版社/2015-2", "url": "https://m.douban.com/book/subject/26280924/", "release_date": null, "author": ["[日] 小林泰三"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28073185.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26280924", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4645, "max": 10, "value": 8.9}, "actions": ["可阅读"], "date": null, "year": ["2015-7"], "card_subtitle": "[阿根廷] 博尔赫斯 / 2015 / 上海译文出版社", "id": "25796120", "title": "小径分岔的花园", "label": null, "type": "book", "description": "", "price": null, "press": ["上海译文出版社"], "info": "[阿根廷] 博尔赫斯/上海译文出版社/2015-7", "url": "https://m.douban.com/book/subject/25796120/", "release_date": null, "author": ["[阿根廷] 博尔赫斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28077170.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25796120", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1232, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2015-8"], "card_subtitle": "九夜茴 / 2015 / 江苏凤凰文艺出版社", "id": "26436743", "title": "曾少年", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "九夜茴/江苏凤凰文艺出版社/2015-8", "url": "https://m.douban.com/book/subject/26436743/", "release_date": null, "author": ["九夜茴"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s29481589.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26436743", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1780, "max": 10, "value": 8.7}, "actions": [], "date": null, "year": ["2015-5"], "card_subtitle": "[美] 特德·姜 / 2015 / 译林出版社", "id": "26295450", "title": "软件体的生命周期", "label": null, "type": "book", "description": "", "price": null, "press": ["译林出版社"], "info": "[美] 特德·姜/译林出版社/2015-5", "url": "https://m.douban.com/book/subject/26295450/", "release_date": null, "author": ["[美] 特德·姜"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28033065.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26295450", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6014, "max": 10, "value": 7.8}, "actions": [], "date": null, "year": ["2015-12-1"], "card_subtitle": "玖月晞 / 2015 / 百花洲文艺出版社", "id": "26662515", "title": "他知道风从哪个方向来", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "玖月晞/百花洲文艺出版社/2015-12-1", "url": "https://m.douban.com/book/subject/26662515/", "release_date": null, "author": ["玖月晞"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28338049.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26662515", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 855, "max": 10, "value": 6.6}, "actions": ["可阅读"], "date": null, "year": ["2015-1-1"], "card_subtitle": "苏美 / 2015 / 北京联合出版社", "id": "26269094", "title": "文艺女青年这种病,生个孩子就好了", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版社"], "info": "苏美/北京联合出版社/2015-1-1", "url": "https://m.douban.com/book/subject/26269094/", "release_date": null, "author": ["苏美"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27869845.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26269094", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 909, "max": 10, "value": 7.8}, "actions": [], "date": null, "year": ["2015-1"], "card_subtitle": "[美] 莉迪亚·戴维斯 / 2015 / 重庆大学出版社", "id": "26264210", "title": "几乎没有记忆", "label": null, "type": "book", "description": "", "price": null, "press": ["重庆大学出版社"], "info": "[美] 莉迪亚·戴维斯/重庆大学出版社/2015-1", "url": "https://m.douban.com/book/subject/26264210/", "release_date": null, "author": ["[美] 莉迪亚·戴维斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27968864.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26264210", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 951, "max": 10, "value": 6.8}, "actions": ["可阅读"], "date": null, "year": ["2015-7-1"], "card_subtitle": "周宏翔 / 2015 / 北京联合出版公司", "id": "26428516", "title": "我只是敢和别人不一样", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "周宏翔/北京联合出版公司/2015-7-1", "url": "https://m.douban.com/book/subject/26428516/", "release_date": null, "author": ["周宏翔"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28113585.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26428516", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4772, "max": 10, "value": 8.2}, "actions": ["可阅读"], "date": null, "year": ["2015-11-1"], "card_subtitle": "[美]克莉丝汀·汉娜 / 2015 / 百花洲文艺出版社", "id": "26642866", "title": "萤火虫小巷", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "[美]克莉丝汀·汉娜/百花洲文艺出版社/2015-11-1", "url": "https://m.douban.com/book/subject/26642866/", "release_date": null, "author": ["[美]克莉丝汀·汉娜"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28349471.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26642866", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 704, "max": 10, "value": 7.9}, "actions": ["可阅读"], "date": null, "year": ["2015-8-1"], "card_subtitle": "多多 / 2015 / 百花洲文艺出版社", "id": "26437079", "title": "春江花月夜", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "多多/百花洲文艺出版社/2015-8-1", "url": "https://m.douban.com/book/subject/26437079/", "release_date": null, "author": ["多多"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28264107.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26437079", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1965, "max": 10, "value": 7.0}, "actions": ["可阅读"], "date": null, "year": ["2015-9"], "card_subtitle": "朱炫 / 2015 / 江苏凤凰文艺出版社", "id": "26609056", "title": "年少荒唐", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "朱炫/江苏凤凰文艺出版社/2015-9", "url": "https://m.douban.com/book/subject/26609056/", "release_date": null, "author": ["朱炫"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28293203.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26609056", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1096, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2015-6"], "card_subtitle": "果果 / 2015 / 湖南文艺出版社", "id": "26393284", "title": "花千骨", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "果果/湖南文艺出版社/2015-6", "url": "https://m.douban.com/book/subject/26393284/", "release_date": null, "author": ["果果"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28077278.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26393284", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6681, "max": 10, "value": 7.3}, "actions": ["可阅读"], "date": null, "year": ["2015-12"], "card_subtitle": "马伯庸 / 2015 / 北京联合出版公司", "id": "26650970", "title": "古董局中局 4", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "马伯庸/北京联合出版公司/2015-12", "url": "https://m.douban.com/book/subject/26650970/", "release_date": null, "author": ["马伯庸"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28340239.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26650970", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2951, "max": 10, "value": 8.7}, "actions": [], "date": null, "year": ["2015-5-1"], "card_subtitle": "[哥伦比亚] 加西亚·马尔克斯 / 2015 / 南海出版公司", "id": "26276924", "title": "梦中的欢快葬礼和十二个异乡故事", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[哥伦比亚] 加西亚·马尔克斯/南海出版公司/2015-5-1", "url": "https://m.douban.com/book/subject/26276924/", "release_date": null, "author": ["[哥伦比亚] 加西亚·马尔克斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28053334.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26276924", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1243, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2015-1"], "card_subtitle": "[危地马拉]奥古斯托·蒙特罗索(Augusto Monterroso)  著 [阿根廷]米盖尔·卡里尼(Miguel Carini)  绘 / 2015 / 上海人民出版社/世纪文景", "id": "26294048", "title": "黑羊", "label": null, "type": "book", "description": "", "price": null, "press": ["上海人民出版社/世纪文景"], "info": "[危地马拉]奥古斯托·蒙特罗索(Augusto Monterroso)  著/[阿根廷]米盖尔·卡里尼(Miguel Carini)  绘/上海人民出版社/世纪文景/2015-1", "url": "https://m.douban.com/book/subject/26294048/", "release_date": null, "author": ["[危地马拉]奥古斯托·蒙特罗索(Augusto Monterroso)  著"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28034718.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26294048", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2144, "max": 10, "value": 9.3}, "actions": [], "date": null, "year": ["2015-10"], "card_subtitle": "[法] 安东尼·德·圣-埃克苏佩里 / 2015 / 中央广播电视大学出版社.国开童媒", "id": "26647054", "title": "小王子(纯美珍藏绘本)", "label": null, "type": "book", "description": "", "price": null, "press": ["中央广播电视大学出版社.国开童媒"], "info": "[法] 安东尼·德·圣-埃克苏佩里/中央广播电视大学出版社.国开童媒/2015-10", "url": "https://m.douban.com/book/subject/26647054/", "release_date": null, "author": ["[法] 安东尼·德·圣-埃克苏佩里"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28322662.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26647054", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 354, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2015-9"], "card_subtitle": "张惠雯 / 2015 / 北京十月文艺出版社", "id": "26611551", "title": "一瞬的光线、色彩和阴影", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "张惠雯/北京十月文艺出版社/2015-9", "url": "https://m.douban.com/book/subject/26611551/", "release_date": null, "author": ["张惠雯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28295983.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26611551", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 9312, "max": 10, "value": 8.9}, "actions": ["可阅读"], "date": null, "year": ["2015-10-1"], "card_subtitle": "[美] 安迪·威尔 / 2015 / 译林出版社", "id": "26586492", "title": "火星救援", "label": null, "type": "book", "description": "", "price": null, "press": ["译林出版社"], "info": "[美] 安迪·威尔/译林出版社/2015-10-1", "url": "https://m.douban.com/book/subject/26586492/", "release_date": null, "author": ["[美] 安迪·威尔"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28315660.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26586492", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1391, "max": 10, "value": 8.1}, "actions": ["可阅读"], "date": null, "year": ["2015-7-1"], "card_subtitle": "燕子 / 2015 / 化学工业出版社", "id": "26420555", "title": "何必等来生", "label": null, "type": "book", "description": "", "price": null, "press": ["化学工业出版社"], "info": "燕子/化学工业出版社/2015-7-1", "url": "https://m.douban.com/book/subject/26420555/", "release_date": null, "author": ["燕子"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28105441.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26420555", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1076, "max": 10, "value": 8.7}, "actions": [], "date": null, "year": ["2015-8"], "card_subtitle": "[美] 亨利·戴维·梭罗 [美] 杰弗里·S.克莱默 (注疏) / 2015 / 华东师范大学出版社", "id": "26426917", "title": "瓦尔登湖 (全注疏本)", "label": null, "type": "book", "description": "", "price": null, "press": ["华东师范大学出版社"], "info": "[美] 亨利·戴维·梭罗/[美] 杰弗里·S.克莱默 (注疏)/华东师范大学出版社/2015-8", "url": "https://m.douban.com/book/subject/26426917/", "release_date": null, "author": ["[美] 亨利·戴维·梭罗"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28230797.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26426917", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2109, "max": 10, "value": 8.3}, "actions": [], "date": null, "year": ["2015-5-13"], "card_subtitle": "尾魚 / 2015 / 聯合文學", "id": "26393180", "title": "怨氣撞鈴5·同路", "label": null, "type": "book", "description": "", "price": null, "press": ["聯合文學"], "info": "尾魚/聯合文學/2015-5-13", "url": "https://m.douban.com/book/subject/26393180/", "release_date": null, "author": ["尾魚"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28387724.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26393180", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1330, "max": 10, "value": 8.9}, "actions": ["可阅读"], "date": null, "year": ["2014-11"], "card_subtitle": "(美)丹·西蒙斯 / 2014 / 吉林出版集团有限责任公司", "id": "25941905", "title": "海伯利安的陨落", "label": null, "type": "book", "description": "", "price": null, "press": ["吉林出版集团有限责任公司"], "info": "(美)丹·西蒙斯/吉林出版集团有限责任公司/2014-11", "url": "https://m.douban.com/book/subject/25941905/", "release_date": null, "author": ["(美)丹·西蒙斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27537756.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25941905", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5597, "max": 10, "value": 9.0}, "actions": ["可阅读"], "date": null, "year": ["2015-4"], "card_subtitle": "[美] 丹尼尔·凯斯 / 2015 / 广西师范大学出版社", "id": "26362836", "title": "献给阿尔吉侬的花束", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "[美] 丹尼尔·凯斯/广西师范大学出版社/2015-4", "url": "https://m.douban.com/book/subject/26362836/", "release_date": null, "author": ["[美] 丹尼尔·凯斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28050760.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26362836", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3621, "max": 10, "value": 9.0}, "actions": [], "date": null, "year": ["2015-1-1"], "card_subtitle": "三浦紫苑 / 2015 / 广西师范大学出版社", "id": "26210487", "title": "强风吹拂", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "三浦紫苑/广西师范大学出版社/2015-1-1", "url": "https://m.douban.com/book/subject/26210487/", "release_date": null, "author": ["三浦紫苑"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27914268.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26210487", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1249, "max": 10, "value": 8.3}, "actions": ["可阅读"], "date": null, "year": ["2014-11"], "card_subtitle": "(美)丹·西蒙斯 / 2014 / 吉林出版集团有限责任公司", "id": "25941891", "title": "安迪密恩", "label": null, "type": "book", "description": "", "price": null, "press": ["吉林出版集团有限责任公司"], "info": "(美)丹·西蒙斯/吉林出版集团有限责任公司/2014-11", "url": "https://m.douban.com/book/subject/25941891/", "release_date": null, "author": ["(美)丹·西蒙斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27537795.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25941891", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2224, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2015-7"], "card_subtitle": "[日] 东野圭吾 / 2015 / 南海出版公司", "id": "26417643", "title": "歪笑小说", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[日] 东野圭吾/南海出版公司/2015-7", "url": "https://m.douban.com/book/subject/26417643/", "release_date": null, "author": ["[日] 东野圭吾"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28116538.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26417643", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 957, "max": 10, "value": 7.5}, "actions": ["可阅读"], "date": null, "year": ["2015-3-1"], "card_subtitle": "刘墨闻 / 2015 / 九州出版社", "id": "26335687", "title": "我在最温暖的地方等你", "label": null, "type": "book", "description": "", "price": null, "press": ["九州出版社"], "info": "刘墨闻/九州出版社/2015-3-1", "url": "https://m.douban.com/book/subject/26335687/", "release_date": null, "author": ["刘墨闻"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28017945.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26335687", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1008, "max": 10, "value": 6.6}, "actions": ["可阅读"], "date": null, "year": ["2015-1-1"], "card_subtitle": "张晓晗 / 2015 / 北京联合出版公司", "id": "26287355", "title": "除了爱,我们什么都不会", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "张晓晗/北京联合出版公司/2015-1-1", "url": "https://m.douban.com/book/subject/26287355/", "release_date": null, "author": ["张晓晗"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27978552.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26287355", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2791, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2015-1"], "card_subtitle": "迟子建 / 2015 / 人民文学出版社", "id": "26284529", "title": "群山之巅", "label": null, "type": "book", "description": "", "price": null, "press": ["人民文学出版社"], "info": "迟子建/人民文学出版社/2015-1", "url": "https://m.douban.com/book/subject/26284529/", "release_date": null, "author": ["迟子建"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27986307.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26284529", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 836, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2015-1"], "card_subtitle": "张悦然 主编 / 2015 / 北京十月文艺出版社", "id": "26220763", "title": "鲤·不上班的理想生活", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "张悦然 主编/北京十月文艺出版社/2015-1", "url": "https://m.douban.com/book/subject/26220763/", "release_date": null, "author": ["张悦然 主编"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27964767.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26220763", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 8334, "max": 10, "value": 6.6}, "actions": [], "date": null, "year": ["2015-2"], "card_subtitle": "[日]东野圭吾 / 2015 / 作家出版社", "id": "26297985", "title": "梦幻花", "label": null, "type": "book", "description": "", "price": null, "press": ["作家出版社"], "info": "[日]东野圭吾/作家出版社/2015-2", "url": "https://m.douban.com/book/subject/26297985/", "release_date": null, "author": ["[日]东野圭吾"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28379922.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26297985", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1674, "max": 10, "value": 7.3}, "actions": ["可阅读"], "date": null, "year": ["2015-8"], "card_subtitle": "君子以泽 / 2015 / 中国友谊出版公司", "id": "26579333", "title": "月上重火(上下)", "label": null, "type": "book", "description": "", "price": null, "press": ["中国友谊出版公司"], "info": "君子以泽/中国友谊出版公司/2015-8", "url": "https://m.douban.com/book/subject/26579333/", "release_date": null, "author": ["君子以泽"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28263530.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26579333", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6275, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2015-7"], "card_subtitle": "[美] 劳伦·奥利弗 / 2015 / 湖南文艺出版社", "id": "5391766", "title": "忽然七日", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "[美] 劳伦·奥利弗/湖南文艺出版社/2015-7", "url": "https://m.douban.com/book/subject/5391766/", "release_date": null, "author": ["[美] 劳伦·奥利弗"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28291238.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/5391766", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 813, "max": 10, "value": 7.2}, "actions": ["可阅读"], "date": null, "year": ["2014-10-31"], "card_subtitle": "杨美味 / 2014 / 北京联合出版公司", "id": "26108423", "title": "你看起来很美味", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "杨美味/北京联合出版公司/2014-10-31", "url": "https://m.douban.com/book/subject/26108423/", "release_date": null, "author": ["杨美味"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27596001.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26108423", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2349, "max": 10, "value": 8.1}, "actions": [], "date": null, "year": ["2014-12-1"], "card_subtitle": "刘慈欣 / 2014 / 江苏凤凰文艺出版社", "id": "26210632", "title": "2018", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "刘慈欣/江苏凤凰文艺出版社/2014-12-1", "url": "https://m.douban.com/book/subject/26210632/", "release_date": null, "author": ["刘慈欣"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27761234.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26210632", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2629, "max": 10, "value": 8.1}, "actions": [], "date": null, "year": ["2015-6-1"], "card_subtitle": "[日] 村上春树 [日]大桥步 图 / 2015 / 南海出版公司", "id": "26367364", "title": "爱吃沙拉的狮子", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[日] 村上春树/[日]大桥步 图/南海出版公司/2015-6-1", "url": "https://m.douban.com/book/subject/26367364/", "release_date": null, "author": ["[日] 村上春树"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28057022.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26367364", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2285, "max": 10, "value": 6.5}, "actions": ["可阅读"], "date": null, "year": ["2015-5"], "card_subtitle": "2015 / 浙江文艺出版社", "id": "26359009", "title": "和喜欢的一切在一起", "label": null, "type": "book", "description": "", "price": null, "press": ["浙江文艺出版社"], "info": "浙江文艺出版社/2015-5", "url": "https://m.douban.com/book/subject/26359009/", "release_date": null, "author": [], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28059304.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26359009", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1040, "max": 10, "value": 7.2}, "actions": [], "date": null, "year": ["2015-3-1"], "card_subtitle": "午歌 / 2015 / 作家出版社", "id": "26293675", "title": "晚安,我亲爱的人", "label": null, "type": "book", "description": "", "price": null, "press": ["作家出版社"], "info": "午歌/作家出版社/2015-3-1", "url": "https://m.douban.com/book/subject/26293675/", "release_date": null, "author": ["午歌"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27977396.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26293675", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2375, "max": 10, "value": 7.7}, "actions": [], "date": null, "year": ["2015-4"], "card_subtitle": "侧侧轻寒 / 2015 / 江苏凤凰文艺出版社", "id": "26347981", "title": "簪中录3", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "侧侧轻寒/江苏凤凰文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26347981/", "release_date": null, "author": ["侧侧轻寒"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28040015.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26347981", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3789, "max": 10, "value": 7.7}, "actions": ["可阅读"], "date": null, "year": ["2015-9"], "card_subtitle": "[美] 萨拉·帕坎南 / 2015 / 湖南文艺出版社", "id": "6041708", "title": "世上另一个我(修订版)", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "[美] 萨拉·帕坎南/湖南文艺出版社/2015-9", "url": "https://m.douban.com/book/subject/6041708/", "release_date": null, "author": ["[美] 萨拉·帕坎南"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28278195.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/6041708", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4620, "max": 10, "value": 8.8}, "actions": [], "date": null, "year": ["2015-6"], "card_subtitle": "[哥伦比亚] 加西亚·马尔克斯 / 2015 / 南海出版公司", "id": "26374532", "title": "霍乱时期的爱情(2015年修订版)", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[哥伦比亚] 加西亚·马尔克斯/南海出版公司/2015-6", "url": "https://m.douban.com/book/subject/26374532/", "release_date": null, "author": ["[哥伦比亚] 加西亚·马尔克斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28120604.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26374532", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4145, "max": 10, "value": 9.0}, "actions": ["可阅读"], "date": null, "year": ["2015-4"], "card_subtitle": "[英] 奥斯卡·王尔德 / 2015 / 浙江文艺出版社", "id": "26344078", "title": "夜莺与玫瑰", "label": null, "type": "book", "description": "", "price": null, "press": ["浙江文艺出版社"], "info": "[英] 奥斯卡·王尔德/浙江文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26344078/", "release_date": null, "author": ["[英] 奥斯卡·王尔德"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28041509.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26344078", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1603, "max": 10, "value": 8.1}, "actions": [], "date": null, "year": ["2014-10-1"], "card_subtitle": "Priest / 2014 / 百花洲文艺出版社", "id": "26043287", "title": "我的拖延症女友", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "Priest/百花洲文艺出版社/2014-10-1", "url": "https://m.douban.com/book/subject/26043287/", "release_date": null, "author": ["Priest"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27528977.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26043287", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1888, "max": 10, "value": 8.1}, "actions": ["可阅读"], "date": null, "year": ["2015-1"], "card_subtitle": "张春 / 2015 / 人民文学出版社", "id": "26272073", "title": "一生里的某一刻", "label": null, "type": "book", "description": "", "price": null, "press": ["人民文学出版社"], "info": "张春/人民文学出版社/2015-1", "url": "https://m.douban.com/book/subject/26272073/", "release_date": null, "author": ["张春"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27994766.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26272073", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3254, "max": 10, "value": 8.3}, "actions": [], "date": null, "year": ["2015-7-1"], "card_subtitle": "尼罗 / 2015 / 长江出版社", "id": "26578003", "title": "无心法师 第一卷", "label": null, "type": "book", "description": "", "price": null, "press": ["长江出版社"], "info": "尼罗/长江出版社/2015-7-1", "url": "https://m.douban.com/book/subject/26578003/", "release_date": null, "author": ["尼罗"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28301482.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26578003", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1794, "max": 10, "value": 7.5}, "actions": ["可阅读"], "date": null, "year": ["2015-4"], "card_subtitle": "[美]诺拉·艾芙隆(Nora Ephron) / 2015 / 北京联合出版公司", "id": "26318808", "title": "我的脖子让我很不爽", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "[美]诺拉·艾芙隆(Nora Ephron)/北京联合出版公司/2015-4", "url": "https://m.douban.com/book/subject/26318808/", "release_date": null, "author": ["[美]诺拉·艾芙隆(Nora Ephron)"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28019969.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26318808", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 23772, "max": 10, "value": 7.5}, "actions": ["可阅读"], "date": null, "year": ["2015-6"], "card_subtitle": "[日] 东野圭吾 / 2015 / 湖南文艺出版社", "id": "26413027", "title": "虚无的十字架", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "[日] 东野圭吾/湖南文艺出版社/2015-6", "url": "https://m.douban.com/book/subject/26413027/", "release_date": null, "author": ["[日] 东野圭吾"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28976475.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26413027", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2573, "max": 10, "value": 7.6}, "actions": [], "date": null, "year": ["2015-4"], "card_subtitle": "侧侧轻寒 / 2015 / 江苏凤凰文艺出版社", "id": "26347982", "title": "簪中录4", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "侧侧轻寒/江苏凤凰文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26347982/", "release_date": null, "author": ["侧侧轻寒"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28040028.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26347982", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1147, "max": 10, "value": 7.0}, "actions": ["可阅读"], "date": null, "year": ["2015-1"], "card_subtitle": "小岩井 / 2015 / 江苏凤凰文艺出版社", "id": "26293455", "title": "我依然爱你,我只是不喜欢你了", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "小岩井/江苏凤凰文艺出版社/2015-1", "url": "https://m.douban.com/book/subject/26293455/", "release_date": null, "author": ["小岩井"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27976022.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26293455", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 14367, "max": 10, "value": 8.1}, "actions": ["可阅读"], "date": null, "year": ["2015-6-30"], "card_subtitle": "[美] 丹尼尔·凯斯 / 2015 / 湖岸出版/外语教学与研究出版社", "id": "26371317", "title": "24个比利", "label": null, "type": "book", "description": "", "price": null, "press": ["湖岸出版/外语教学与研究出版社"], "info": "[美] 丹尼尔·凯斯/湖岸出版/外语教学与研究出版社/2015-6-30", "url": "https://m.douban.com/book/subject/26371317/", "release_date": null, "author": ["[美] 丹尼尔·凯斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28094021.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26371317", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2086, "max": 10, "value": 5.7}, "actions": ["可阅读"], "date": null, "year": ["2015-5"], "card_subtitle": "桐华 / 2015 / 湖南文艺出版社", "id": "26369208", "title": "那片星空,那片海", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "桐华/湖南文艺出版社/2015-5", "url": "https://m.douban.com/book/subject/26369208/", "release_date": null, "author": ["桐华"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28064005.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26369208", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1575, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2014-8-15"], "card_subtitle": "田畈 / 2014 / 花山文艺出版社", "id": "25929667", "title": "你是我学生又怎样", "label": null, "type": "book", "description": "", "price": null, "press": ["花山文艺出版社"], "info": "田畈/花山文艺出版社/2014-8-15", "url": "https://m.douban.com/book/subject/25929667/", "release_date": null, "author": ["田畈"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27349224.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25929667", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1333, "max": 10, "value": 7.3}, "actions": [], "date": null, "year": ["2015-6-1"], "card_subtitle": "烟波人长安 / 2015 / 江苏凤凰文艺出版社", "id": "26384985", "title": "我有个恋爱想和你谈下", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "烟波人长安/江苏凤凰文艺出版社/2015-6-1", "url": "https://m.douban.com/book/subject/26384985/", "release_date": null, "author": ["烟波人长安"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28067259.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26384985", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 49462, "max": 10, "value": 6.2}, "actions": ["可阅读"], "date": null, "year": ["2015-6-1"], "card_subtitle": "[英]克莱儿·麦克福尔 / 2015 / 百花洲文艺出版社", "id": "26356948", "title": "摆渡人", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "[英]克莱儿·麦克福尔/百花洲文艺出版社/2015-6-1", "url": "https://m.douban.com/book/subject/26356948/", "release_date": null, "author": ["[英]克莱儿·麦克福尔"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28063701.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26356948", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2002, "max": 10, "value": 5.6}, "actions": ["可阅读"], "date": null, "year": ["2015-2-1"], "card_subtitle": "马伯庸 / 2015 / 北京联合出版公司", "id": "25978734", "title": "马伯庸笑翻中国简史", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "马伯庸/北京联合出版公司/2015-2-1", "url": "https://m.douban.com/book/subject/25978734/", "release_date": null, "author": ["马伯庸"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27963383.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25978734", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4483, "max": 10, "value": 8.4}, "actions": [], "date": null, "year": ["2014-12"], "card_subtitle": "刘慈欣 / 2014 / 江苏凤凰文艺出版社", "id": "26210607", "title": "时间移民", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "刘慈欣/江苏凤凰文艺出版社/2014-12", "url": "https://m.douban.com/book/subject/26210607/", "release_date": null, "author": ["刘慈欣"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27760627.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26210607", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 11581, "max": 10, "value": 8.6}, "actions": ["可阅读"], "date": null, "year": ["2015-5"], "card_subtitle": "[美] 特德·姜 / 2015 / 译林出版社", "id": "26295448", "title": "你一生的故事", "label": null, "type": "book", "description": "", "price": null, "press": ["译林出版社"], "info": "[美] 特德·姜/译林出版社/2015-5", "url": "https://m.douban.com/book/subject/26295448/", "release_date": null, "author": ["[美] 特德·姜"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28033064.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26295448", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2605, "max": 10, "value": 6.2}, "actions": ["可阅读"], "date": null, "year": ["2015-5"], "card_subtitle": "冯唐 / 2015 / 九州出版社", "id": "26362908", "title": "女神一号", "label": null, "type": "book", "description": "", "price": null, "press": ["九州出版社"], "info": "冯唐/九州出版社/2015-5", "url": "https://m.douban.com/book/subject/26362908/", "release_date": null, "author": ["冯唐"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28060597.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26362908", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1180, "max": 10, "value": 7.2}, "actions": ["可阅读"], "date": null, "year": ["2014-11"], "card_subtitle": "文珍 / 2014 / 中信出版社", "id": "26236436", "title": "我们夜里在美术馆谈恋爱", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "文珍/中信出版社/2014-11", "url": "https://m.douban.com/book/subject/26236436/", "release_date": null, "author": ["文珍"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27766949.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26236436", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 52753, "max": 10, "value": 8.2}, "actions": ["可阅读"], "date": null, "year": ["2015-7"], "card_subtitle": "[美] 伍绮诗 / 2015 / 江苏凤凰文艺出版社", "id": "26382433", "title": "无声告白", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "[美] 伍绮诗/江苏凤凰文艺出版社/2015-7", "url": "https://m.douban.com/book/subject/26382433/", "release_date": null, "author": ["[美] 伍绮诗"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28109182.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26382433", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3402, "max": 10, "value": 8.0}, "actions": ["可阅读"], "date": null, "year": ["2015-4"], "card_subtitle": "书海沧生 / 2015 / 百花洲文艺出版社", "id": "26334227", "title": "昭奚旧草", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "书海沧生/百花洲文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26334227/", "release_date": null, "author": ["书海沧生"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28017387.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26334227", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1974, "max": 10, "value": 8.6}, "actions": ["可阅读"], "date": null, "year": ["2014-9-1"], "card_subtitle": "雪满梁园 / 2014 / 百花洲文艺出版社", "id": "25963518", "title": "鹤唳华亭", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "雪满梁园/百花洲文艺出版社/2014-9-1", "url": "https://m.douban.com/book/subject/25963518/", "release_date": null, "author": ["雪满梁园"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27414860.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25963518", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1736, "max": 10, "value": 8.4}, "actions": ["可阅读"], "date": null, "year": ["2014-11"], "card_subtitle": "[日] 高野和明 / 2014 / 江苏凤凰文艺出版社", "id": "26046043", "title": "人类灭绝", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "[日] 高野和明/江苏凤凰文艺出版社/2014-11", "url": "https://m.douban.com/book/subject/26046043/", "release_date": null, "author": ["[日] 高野和明"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27722334.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26046043", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 973, "max": 10, "value": 7.6}, "actions": [], "date": null, "year": ["2014-10-16"], "card_subtitle": "库尔班江·赛买提 / 2014 / 中信出版社", "id": "26052898", "title": "我从新疆来", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "库尔班江·赛买提/中信出版社/2014-10-16", "url": "https://m.douban.com/book/subject/26052898/", "release_date": null, "author": ["库尔班江·赛买提"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27637182.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26052898", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1644, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2015-6"], "card_subtitle": "墨宝非宝 / 2015 / 百花洲文艺出版社", "id": "26383805", "title": "很想很想你", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "墨宝非宝/百花洲文艺出版社/2015-6", "url": "https://m.douban.com/book/subject/26383805/", "release_date": null, "author": ["墨宝非宝"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28096286.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26383805", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2453, "max": 10, "value": 8.0}, "actions": ["可阅读"], "date": null, "year": ["2015-3-1"], "card_subtitle": "朱岳 / 2015 / 北京联合出版公司·后浪出版公司", "id": "26303224", "title": "说部之乱", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司·后浪出版公司"], "info": "朱岳/北京联合出版公司·后浪出版公司/2015-3-1", "url": "https://m.douban.com/book/subject/26303224/", "release_date": null, "author": ["朱岳"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28606633.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26303224", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3081, "max": 10, "value": 7.9}, "actions": [], "date": null, "year": ["2015-3-1"], "card_subtitle": "[哥伦比亚] 加西亚·马尔克斯 / 2015 / 南海出版公司", "id": "26276923", "title": "礼拜二午睡时刻", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[哥伦比亚] 加西亚·马尔克斯/南海出版公司/2015-3-1", "url": "https://m.douban.com/book/subject/26276923/", "release_date": null, "author": ["[哥伦比亚] 加西亚·马尔克斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28018652.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26276923", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2478, "max": 10, "value": 8.3}, "actions": [], "date": null, "year": ["2015-3-13"], "card_subtitle": "尾魚 / 2015 / 聯合文學", "id": "26351997", "title": "怨氣撞鈴3·飛天", "label": null, "type": "book", "description": "", "price": null, "press": ["聯合文學"], "info": "尾魚/聯合文學/2015-3-13", "url": "https://m.douban.com/book/subject/26351997/", "release_date": null, "author": ["尾魚"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28387726.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26351997", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2561, "max": 10, "value": 8.4}, "actions": [], "date": null, "year": ["2015-4-13"], "card_subtitle": "尾魚 / 2015 / 聯合文學", "id": "26352002", "title": "怨氣撞鈴4·黑蝶", "label": null, "type": "book", "description": "", "price": null, "press": ["聯合文學"], "info": "尾魚/聯合文學/2015-4-13", "url": "https://m.douban.com/book/subject/26352002/", "release_date": null, "author": ["尾魚"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28387727.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26352002", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1851, "max": 10, "value": 8.8}, "actions": ["可阅读"], "date": null, "year": ["2014-9-1"], "card_subtitle": "[美] 约瑟夫·布罗茨基 / 2014 / 浙江文艺出版社", "id": "26053771", "title": "小于一", "label": null, "type": "book", "description": "", "price": null, "press": ["浙江文艺出版社"], "info": "[美] 约瑟夫·布罗茨基/浙江文艺出版社/2014-9-1", "url": "https://m.douban.com/book/subject/26053771/", "release_date": null, "author": ["[美] 约瑟夫·布罗茨基"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27707705.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26053771", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2844, "max": 10, "value": 8.2}, "actions": [], "date": null, "year": ["2015-3"], "card_subtitle": "侧侧轻寒 / 2015 / 江苏凤凰文艺出版社", "id": "26320556", "title": "簪中录2", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "侧侧轻寒/江苏凤凰文艺出版社/2015-3", "url": "https://m.douban.com/book/subject/26320556/", "release_date": null, "author": ["侧侧轻寒"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28002318.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26320556", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2588, "max": 10, "value": 8.2}, "actions": [], "date": null, "year": ["2015-2-13"], "card_subtitle": "尾魚 / 2015 / 聯合文學", "id": "26331660", "title": "怨氣撞鈴2·根鬚", "label": null, "type": "book", "description": "", "price": null, "press": ["聯合文學"], "info": "尾魚/聯合文學/2015-2-13", "url": "https://m.douban.com/book/subject/26331660/", "release_date": null, "author": ["尾魚"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s29407309.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26331660", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1616, "max": 10, "value": 8.1}, "actions": [], "date": null, "year": ["2014-7"], "card_subtitle": "乙一 / 2014 / 广西师范大学出版社", "id": "25881335", "title": "在黑暗中等待", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "乙一/广西师范大学出版社/2014-7", "url": "https://m.douban.com/book/subject/25881335/", "release_date": null, "author": ["乙一"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27346886.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25881335", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1341, "max": 10, "value": 7.2}, "actions": [], "date": null, "year": ["2015-2"], "card_subtitle": "黄佟佟 / 2015 / 江苏文艺出版社", "id": "26313089", "title": "姑娘,欢迎降落在这残酷世界", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "黄佟佟/江苏文艺出版社/2015-2", "url": "https://m.douban.com/book/subject/26313089/", "release_date": null, "author": ["黄佟佟"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27994796.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26313089", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 996, "max": 10, "value": 7.9}, "actions": [], "date": null, "year": ["2014-10"], "card_subtitle": "比目鱼 / 2014 / 新星出版社", "id": "25900956", "title": "刻小说的人", "label": null, "type": "book", "description": "", "price": null, "press": ["新星出版社"], "info": "比目鱼/新星出版社/2014-10", "url": "https://m.douban.com/book/subject/25900956/", "release_date": null, "author": ["比目鱼"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27463406.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25900956", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1133, "max": 10, "value": 7.3}, "actions": [], "date": null, "year": ["2014-11"], "card_subtitle": "沧月 / 2014 / 北京联合出版公司", "id": "26134061", "title": "忘川 上", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "沧月/北京联合出版公司/2014-11", "url": "https://m.douban.com/book/subject/26134061/", "release_date": null, "author": ["沧月"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27622161.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26134061", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1087, "max": 10, "value": 6.3}, "actions": [], "date": null, "year": ["2015-1-1"], "card_subtitle": "安宁 / 2015 / 花山文艺出版社", "id": "26284577", "title": "温暖的弦", "label": null, "type": "book", "description": "", "price": null, "press": ["花山文艺出版社"], "info": "安宁/花山文艺出版社/2015-1-1", "url": "https://m.douban.com/book/subject/26284577/", "release_date": null, "author": ["安宁"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27966753.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26284577", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2765, "max": 10, "value": 9.2}, "actions": ["可阅读"], "date": null, "year": ["2014-11"], "card_subtitle": "(美)丹·西蒙斯 / 2014 / 吉林出版集团有限责任公司", "id": "25941890", "title": "海伯利安", "label": null, "type": "book", "description": "", "price": null, "press": ["吉林出版集团有限责任公司"], "info": "(美)丹·西蒙斯/吉林出版集团有限责任公司/2014-11", "url": "https://m.douban.com/book/subject/25941890/", "release_date": null, "author": ["(美)丹·西蒙斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27537735.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25941890", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2273, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2015-1"], "card_subtitle": "墨宝非宝 / 2015 / 百花洲文艺出版社", "id": "26255776", "title": "一厘米的阳光", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "墨宝非宝/百花洲文艺出版社/2015-1", "url": "https://m.douban.com/book/subject/26255776/", "release_date": null, "author": ["墨宝非宝"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27961625.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26255776", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 83552, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2015-5-1"], "card_subtitle": "[美] 加·泽文 / 2015 / 江苏凤凰文艺出版社", "id": "26340138", "title": "岛上书店", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "[美] 加·泽文/江苏凤凰文艺出版社/2015-5-1", "url": "https://m.douban.com/book/subject/26340138/", "release_date": null, "author": ["[美] 加·泽文"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28049685.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26340138", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2718, "max": 10, "value": 8.1}, "actions": [], "date": null, "year": ["2014-9"], "card_subtitle": "宫部美雪 / 2014 / 江苏凤凰文艺出版社", "id": "25954353", "title": "所罗门的伪证", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "宫部美雪/江苏凤凰文艺出版社/2014-9", "url": "https://m.douban.com/book/subject/25954353/", "release_date": null, "author": ["宫部美雪"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27524396.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25954353", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1653, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2015-4"], "card_subtitle": "[美] 托马斯·福斯特 / 2015 / 南海出版公司", "id": "26305561", "title": "如何阅读一本小说", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[美] 托马斯·福斯特/南海出版公司/2015-4", "url": "https://m.douban.com/book/subject/26305561/", "release_date": null, "author": ["[美] 托马斯·福斯特"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28005459.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26305561", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5202, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2015-4"], "card_subtitle": "丁墨 / 2015 / 百花洲文艺出版社", "id": "26365847", "title": "美人为馅", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "丁墨/百花洲文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26365847/", "release_date": null, "author": ["丁墨"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28096187.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26365847", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2137, "max": 10, "value": 8.7}, "actions": [], "date": null, "year": ["2014-11"], "card_subtitle": "[哥伦比亚] 加西亚·马尔克斯 / 2014 / 南海出版公司", "id": "25985126", "title": "迷宫中的将军", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[哥伦比亚] 加西亚·马尔克斯/南海出版公司/2014-11", "url": "https://m.douban.com/book/subject/25985126/", "release_date": null, "author": ["[哥伦比亚] 加西亚·马尔克斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27734425.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25985126", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4260, "max": 10, "value": 9.3}, "actions": ["可阅读"], "date": null, "year": ["2014-9-1"], "card_subtitle": "罗伯特·麦基 / 2014 / 天津人民出版社", "id": "25976544", "title": "故事", "label": null, "type": "book", "description": "", "price": null, "press": ["天津人民出版社"], "info": "罗伯特·麦基/天津人民出版社/2014-9-1", "url": "https://m.douban.com/book/subject/25976544/", "release_date": null, "author": ["罗伯特·麦基"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27598249.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25976544", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 33559, "max": 10, "value": 9.0}, "actions": [], "date": null, "year": ["2014-6"], "card_subtitle": "东野圭吾 / 2014 / 南海出版公司", "id": "25924253", "title": "嫌疑人X的献身", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "东野圭吾/南海出版公司/2014-6", "url": "https://m.douban.com/book/subject/25924253/", "release_date": null, "author": ["东野圭吾"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27676061.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25924253", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 9751, "max": 10, "value": 7.9}, "actions": ["可阅读"], "date": null, "year": ["2015-2"], "card_subtitle": "伊坂幸太郎 / 2015 / 新星出版社", "id": "25892399", "title": "余生皆假期", "label": null, "type": "book", "description": "", "price": null, "press": ["新星出版社"], "info": "伊坂幸太郎/新星出版社/2015-2", "url": "https://m.douban.com/book/subject/25892399/", "release_date": null, "author": ["伊坂幸太郎"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27988705.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25892399", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1042, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2014-12"], "card_subtitle": "落落 / 2014 / 长江文艺出版社", "id": "26262056", "title": "有生之年", "label": null, "type": "book", "description": "", "price": null, "press": ["长江文艺出版社"], "info": "落落/长江文艺出版社/2014-12", "url": "https://m.douban.com/book/subject/26262056/", "release_date": null, "author": ["落落"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27967368.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26262056", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5288, "max": 10, "value": 5.9}, "actions": ["可阅读"], "date": null, "year": ["2015-4-1"], "card_subtitle": "张皓宸 / 2015 / 天津人民出版社", "id": "26357479", "title": "我与世界只差一个你", "label": null, "type": "book", "description": "", "price": null, "press": ["天津人民出版社"], "info": "张皓宸/天津人民出版社/2015-4-1", "url": "https://m.douban.com/book/subject/26357479/", "release_date": null, "author": ["张皓宸"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28039621.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26357479", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6023, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2015-1-1"], "card_subtitle": "侧侧轻寒 / 2015 / 江苏凤凰文艺出版社", "id": "26284304", "title": "簪中录", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "侧侧轻寒/江苏凤凰文艺出版社/2015-1-1", "url": "https://m.douban.com/book/subject/26284304/", "release_date": null, "author": ["侧侧轻寒"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27999934.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26284304", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 9791, "max": 10, "value": 9.0}, "actions": [], "date": null, "year": ["2015-2-1"], "card_subtitle": "(法) 加缪 / 2015 / 北京大学出版社", "id": "26276775", "title": "异乡人", "label": null, "type": "book", "description": "", "price": null, "press": ["北京大学出版社"], "info": "(法) 加缪/北京大学出版社/2015-2-1", "url": "https://m.douban.com/book/subject/26276775/", "release_date": null, "author": ["(法) 加缪"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27980035.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26276775", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1638, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2014-6"], "card_subtitle": "(法)马克·李维 / 2014 / 湖南文艺出版社", "id": "25897675", "title": "比恐惧更强烈的情感", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "(法)马克·李维/湖南文艺出版社/2014-6", "url": "https://m.douban.com/book/subject/25897675/", "release_date": null, "author": ["(法)马克·李维"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27316092.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25897675", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2901, "max": 10, "value": 8.1}, "actions": ["可阅读"], "date": null, "year": ["2014-10-1"], "card_subtitle": "[法]马克·李维 / 2014 / 湖南文艺出版社", "id": "25985966", "title": "偷影子的人", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "[法]马克·李维/湖南文艺出版社/2014-10-1", "url": "https://m.douban.com/book/subject/25985966/", "release_date": null, "author": ["[法]马克·李维"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27481081.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25985966", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1469, "max": 10, "value": 7.0}, "actions": [], "date": null, "year": ["2014-9"], "card_subtitle": "冯唐 / 2014 / 天津人民出版社", "id": "25806628", "title": "万物生长", "label": null, "type": "book", "description": "", "price": null, "press": ["天津人民出版社"], "info": "冯唐/天津人民出版社/2014-9", "url": "https://m.douban.com/book/subject/25806628/", "release_date": null, "author": ["冯唐"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27196331.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25806628", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5704, "max": 10, "value": 7.8}, "actions": [], "date": null, "year": ["2015-3-1"], "card_subtitle": "加西亚·马尔克斯 / 2015 / 南海出版社", "id": "26276279", "title": "苦妓回忆录", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版社"], "info": "加西亚·马尔克斯/南海出版社/2015-3-1", "url": "https://m.douban.com/book/subject/26276279/", "release_date": null, "author": ["加西亚·马尔克斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28018646.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26276279", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2962, "max": 10, "value": 6.5}, "actions": [], "date": null, "year": ["2015-2-1"], "card_subtitle": "余华 / 2015 / 北京十月文艺出版社", "id": "26291216", "title": "我们生活在巨大的差距里", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "余华/北京十月文艺出版社/2015-2-1", "url": "https://m.douban.com/book/subject/26291216/", "release_date": null, "author": ["余华"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27999290.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26291216", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2526, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2015-4"], "card_subtitle": "君子以泽 / 2015 / 湖南文艺出版社", "id": "26325635", "title": "月都花落,沧海花开", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "君子以泽/湖南文艺出版社/2015-4", "url": "https://m.douban.com/book/subject/26325635/", "release_date": null, "author": ["君子以泽"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28027306.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26325635", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4098, "max": 10, "value": 6.8}, "actions": [], "date": null, "year": ["2014-7-5"], "card_subtitle": "陶立夏 / 2014 / 江苏文艺出版社", "id": "25912887", "title": "练习一个人", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "陶立夏/江苏文艺出版社/2014-7-5", "url": "https://m.douban.com/book/subject/25912887/", "release_date": null, "author": ["陶立夏"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27321176.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25912887", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1516, "max": 10, "value": 7.0}, "actions": [], "date": null, "year": ["2014"], "card_subtitle": "冯唐 / 2014 / 天地图书", "id": "25902105", "title": "素女经", "label": null, "type": "book", "description": "", "price": null, "press": ["天地图书"], "info": "冯唐/天地图书/2014", "url": "https://m.douban.com/book/subject/25902105/", "release_date": null, "author": ["冯唐"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28347680.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25902105", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 8771, "max": 10, "value": 8.2}, "actions": ["可阅读"], "date": null, "year": ["2015-1-1"], "card_subtitle": "冶文彪 / 2015 / 北京联合出版公司", "id": "26265745", "title": "清明上河图密码", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "冶文彪/北京联合出版公司/2015-1-1", "url": "https://m.douban.com/book/subject/26265745/", "release_date": null, "author": ["冶文彪"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27956707.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26265745", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 790, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2014-11"], "card_subtitle": "九夜茴 / 2014 / 江苏凤凰文艺出版社", "id": "26258095", "title": "匆匆那年•全彩电影纪念版(全二册)", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "九夜茴/江苏凤凰文艺出版社/2014-11", "url": "https://m.douban.com/book/subject/26258095/", "release_date": null, "author": ["九夜茴"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27798202.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26258095", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1504, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2014-8"], "card_subtitle": "(日)麻耶雄嵩 / 2014 / 新星出版社", "id": "25892396", "title": "有翼之暗", "label": null, "type": "book", "description": "", "price": null, "press": ["新星出版社"], "info": "(日)麻耶雄嵩/新星出版社/2014-8", "url": "https://m.douban.com/book/subject/25892396/", "release_date": null, "author": ["(日)麻耶雄嵩"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27355377.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25892396", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6974, "max": 10, "value": 7.7}, "actions": ["可阅读"], "date": null, "year": ["2015-2"], "card_subtitle": "[日] 村上春树 / 2015 / 上海译文出版社", "id": "26286208", "title": "没有女人的男人们", "label": null, "type": "book", "description": "", "price": null, "press": ["上海译文出版社"], "info": "[日] 村上春树/上海译文出版社/2015-2", "url": "https://m.douban.com/book/subject/26286208/", "release_date": null, "author": ["[日] 村上春树"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s28004680.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26286208", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4664, "max": 10, "value": 8.2}, "actions": [], "date": null, "year": ["2015-2-13"], "card_subtitle": "尾魚 / 2015 / 聯合文學", "id": "26331014", "title": "怨氣撞鈴1·食骨", "label": null, "type": "book", "description": "", "price": null, "press": ["聯合文學"], "info": "尾魚/聯合文學/2015-2-13", "url": "https://m.douban.com/book/subject/26331014/", "release_date": null, "author": ["尾魚"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s29407307.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26331014", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1405, "max": 10, "value": 7.5}, "actions": ["可阅读"], "date": null, "year": ["2014-12"], "card_subtitle": "绿妖 / 2014 / 广西师范大学出版社", "id": "26274801", "title": "沉默也会歌唱", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "绿妖/广西师范大学出版社/2014-12", "url": "https://m.douban.com/book/subject/26274801/", "release_date": null, "author": ["绿妖"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27950212.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26274801", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4540, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2015-1"], "card_subtitle": "[英]西蒙•蒙蒂菲奥里 / 2015 / 民主与建设出版社", "id": "25886351", "title": "耶路撒冷三千年", "label": null, "type": "book", "description": "", "price": null, "press": ["民主与建设出版社"], "info": "[英]西蒙•蒙蒂菲奥里/民主与建设出版社/2015-1", "url": "https://m.douban.com/book/subject/25886351/", "release_date": null, "author": ["[英]西蒙•蒙蒂菲奥里"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27762150.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25886351", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1962, "max": 10, "value": 6.5}, "actions": [], "date": null, "year": ["2014-8"], "card_subtitle": "杨绛 / 2014 / 人民文学出版社", "id": "25931861", "title": "洗澡之后", "label": null, "type": "book", "description": "", "price": null, "press": ["人民文学出版社"], "info": "杨绛/人民文学出版社/2014-8", "url": "https://m.douban.com/book/subject/25931861/", "release_date": null, "author": ["杨绛"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27529672.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25931861", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4053, "max": 10, "value": 6.8}, "actions": [], "date": null, "year": ["2014-7"], "card_subtitle": "fresh果果 / 2014 / 湖南文艺出版社", "id": "25915622", "title": "花千骨", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "fresh果果/湖南文艺出版社/2014-7", "url": "https://m.douban.com/book/subject/25915622/", "release_date": null, "author": ["fresh果果"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27312246.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25915622", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4360, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2014-11-20"], "card_subtitle": "[日]川村元气 / 2014 / 长江文艺出版社", "id": "26242908", "title": "如果世上不再有猫", "label": null, "type": "book", "description": "", "price": null, "press": ["长江文艺出版社"], "info": "[日]川村元气/长江文艺出版社/2014-11-20", "url": "https://m.douban.com/book/subject/26242908/", "release_date": null, "author": ["[日]川村元气"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27761254.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26242908", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2384, "max": 10, "value": 6.4}, "actions": ["可阅读"], "date": null, "year": ["2015-1"], "card_subtitle": "顾西爵 / 2015 / 百花洲文艺出版社", "id": "26255773", "title": "何所冬暖,何所夏凉", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "顾西爵/百花洲文艺出版社/2015-1", "url": "https://m.douban.com/book/subject/26255773/", "release_date": null, "author": ["顾西爵"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27798538.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26255773", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1780, "max": 10, "value": 8.9}, "actions": ["可阅读"], "date": null, "year": ["2014-9"], "card_subtitle": "理查德·林克莱特 金·克里桑 / 2014 / 中信出版社", "id": "25924242", "title": "爱在黎明破晓前&爱在日落黄昏时", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "理查德·林克莱特/金·克里桑/中信出版社/2014-9", "url": "https://m.douban.com/book/subject/25924242/", "release_date": null, "author": ["理查德·林克莱特"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27417348.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25924242", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2275, "max": 10, "value": 6.5}, "actions": ["可阅读"], "date": null, "year": ["2014-11"], "card_subtitle": "韩寒 监制 / 2014 / 浙江文艺出版社", "id": "26177823", "title": "在这复杂世界里", "label": null, "type": "book", "description": "", "price": null, "press": ["浙江文艺出版社"], "info": "韩寒 监制/浙江文艺出版社/2014-11", "url": "https://m.douban.com/book/subject/26177823/", "release_date": null, "author": ["韩寒 监制"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27874565.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26177823", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1347, "max": 10, "value": 8.4}, "actions": ["可阅读"], "date": null, "year": ["2014-8"], "card_subtitle": "格非 / 2014 / 译林出版社", "id": "25934176", "title": "雪隐鹭鸶", "label": null, "type": "book", "description": "", "price": null, "press": ["译林出版社"], "info": "格非/译林出版社/2014-8", "url": "https://m.douban.com/book/subject/25934176/", "release_date": null, "author": ["格非"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27372240.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25934176", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2056, "max": 10, "value": 7.6}, "actions": [], "date": null, "year": ["2015-1-1"], "card_subtitle": "寺山修司 (Terayama Shuzi) / 2015 / 民主与建设出版社", "id": "25886172", "title": "幻想图书馆", "label": null, "type": "book", "description": "", "price": null, "press": ["民主与建设出版社"], "info": "寺山修司 (Terayama Shuzi)/民主与建设出版社/2015-1-1", "url": "https://m.douban.com/book/subject/25886172/", "release_date": null, "author": ["寺山修司 (Terayama Shuzi)"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27708539.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25886172", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1398, "max": 10, "value": 7.3}, "actions": [], "date": null, "year": ["2015-1"], "card_subtitle": "君子以泽 / 2015 / 中国华侨出版社", "id": "25848410", "title": "夏梦狂诗曲(全二册新版)", "label": null, "type": "book", "description": "", "price": null, "press": ["中国华侨出版社"], "info": "君子以泽/中国华侨出版社/2015-1", "url": "https://m.douban.com/book/subject/25848410/", "release_date": null, "author": ["君子以泽"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27986061.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25848410", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2714, "max": 10, "value": 6.8}, "actions": [], "date": null, "year": ["2014-11"], "card_subtitle": "丁墨 / 2014 / 百花洲文艺出版社", "id": "26148475", "title": "你和我的倾城时光", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "丁墨/百花洲文艺出版社/2014-11", "url": "https://m.douban.com/book/subject/26148475/", "release_date": null, "author": ["丁墨"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27637492.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26148475", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1656, "max": 10, "value": 7.2}, "actions": ["可阅读"], "date": null, "year": ["2015-2-1"], "card_subtitle": "这么远那么近 / 2015 / 江苏凤凰文艺出版社", "id": "26295733", "title": "我知道你没那么坚强", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "这么远那么近/江苏凤凰文艺出版社/2015-2-1", "url": "https://m.douban.com/book/subject/26295733/", "release_date": null, "author": ["这么远那么近"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27978403.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26295733", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 9887, "max": 10, "value": 8.4}, "actions": ["可阅读"], "date": null, "year": ["2014-12-1"], "card_subtitle": "[美] 艾萨克·阿西莫夫 / 2014 / 江苏凤凰文艺出版社", "id": "26264967", "title": "神们自己", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏凤凰文艺出版社"], "info": "[美] 艾萨克·阿西莫夫/江苏凤凰文艺出版社/2014-12-1", "url": "https://m.douban.com/book/subject/26264967/", "release_date": null, "author": ["[美] 艾萨克·阿西莫夫"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27882508.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26264967", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 953, "max": 10, "value": 5.7}, "actions": [], "date": null, "year": ["2014-8"], "card_subtitle": "有时右逝 叫兽易小星 / 2014 / 长江文艺出版社", "id": "25934119", "title": "万万没想到", "label": null, "type": "book", "description": "", "price": null, "press": ["长江文艺出版社"], "info": "有时右逝/叫兽易小星/长江文艺出版社/2014-8", "url": "https://m.douban.com/book/subject/25934119/", "release_date": null, "author": ["有时右逝"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27345934.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25934119", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3930, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2015-1-1"], "card_subtitle": "村上春树 / 2015 / 南海出版公司", "id": "26264956", "title": "袭击面包店", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "村上春树/南海出版公司/2015-1-1", "url": "https://m.douban.com/book/subject/26264956/", "release_date": null, "author": ["村上春树"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27965087.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26264956", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 679, "max": 10, "value": 8.3}, "actions": [], "date": null, "year": ["2014-9"], "card_subtitle": "[美]吉尔莫·德尔·托罗 [美]查克·霍根 / 2014 / 漓江出版社", "id": "1801813", "title": "血族1:侵袭", "label": null, "type": "book", "description": "", "price": null, "press": ["漓江出版社"], "info": "[美]吉尔莫·德尔·托罗/[美]查克·霍根/漓江出版社/2014-9", "url": "https://m.douban.com/book/subject/1801813/", "release_date": null, "author": ["[美]吉尔莫·德尔·托罗"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27359657.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/1801813", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1698, "max": 10, "value": 6.3}, "actions": [], "date": null, "year": ["2014-9"], "card_subtitle": "匪我思存 / 2014 / 新世界出版社", "id": "25789595", "title": "寻找爱情的邹小姐", "label": null, "type": "book", "description": "", "price": null, "press": ["新世界出版社"], "info": "匪我思存/新世界出版社/2014-9", "url": "https://m.douban.com/book/subject/25789595/", "release_date": null, "author": ["匪我思存"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27461113.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25789595", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1503, "max": 10, "value": 7.7}, "actions": ["可阅读"], "date": null, "year": ["2014-6-20"], "card_subtitle": "(美)约翰·斯卡尔齐 / 2014 / 北京联合出版公司", "id": "25886175", "title": "星际迷航-红衫", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "(美)约翰·斯卡尔齐/北京联合出版公司/2014-6-20", "url": "https://m.douban.com/book/subject/25886175/", "release_date": null, "author": ["(美)约翰·斯卡尔齐"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27292081.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25886175", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 11991, "max": 10, "value": 7.7}, "actions": [], "date": null, "year": ["2014-6"], "card_subtitle": "[日]渡边淳一 / 2014 / 北京联合出版公司", "id": "25891771", "title": "失乐园", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "[日]渡边淳一/北京联合出版公司/2014-6", "url": "https://m.douban.com/book/subject/25891771/", "release_date": null, "author": ["[日]渡边淳一"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27301157.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25891771", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3945, "max": 10, "value": 7.7}, "actions": [], "date": null, "year": ["2015-1-1"], "card_subtitle": "[法] 帕特里克·莫迪亚诺 / 2015 / 上海文艺出版社", "id": "26110579", "title": "暗店街", "label": null, "type": "book", "description": "", "price": null, "press": ["上海文艺出版社"], "info": "[法] 帕特里克·莫迪亚诺/上海文艺出版社/2015-1-1", "url": "https://m.douban.com/book/subject/26110579/", "release_date": null, "author": ["[法] 帕特里克·莫迪亚诺"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27812222.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26110579", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5233, "max": 10, "value": 8.6}, "actions": ["可阅读"], "date": null, "year": ["2014-8"], "card_subtitle": "傅真 / 2014 / 中信出版社", "id": "25920202", "title": "泛若不系之舟", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "傅真/中信出版社/2014-8", "url": "https://m.douban.com/book/subject/25920202/", "release_date": null, "author": ["傅真"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27324757.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25920202", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2275, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2014-7"], "card_subtitle": "章诒和 / 2014 / 广西师范大学出版社", "id": "25913504", "title": "邹氏女", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "章诒和/广西师范大学出版社/2014-7", "url": "https://m.douban.com/book/subject/25913504/", "release_date": null, "author": ["章诒和"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27428781.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25913504", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 7848, "max": 10, "value": 7.7}, "actions": ["可阅读"], "date": null, "year": ["2014-12"], "card_subtitle": "马伯庸 / 2014 / 北京联合出版公司", "id": "26261240", "title": "古董局中局 3", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "马伯庸/北京联合出版公司/2014-12", "url": "https://m.douban.com/book/subject/26261240/", "release_date": null, "author": ["马伯庸"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27963366.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26261240", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 13085, "max": 10, "value": 7.7}, "actions": [], "date": null, "year": ["2015-1"], "card_subtitle": "(日)东野圭吾 / 2015 / 南海出版公司", "id": "26118072", "title": "祈祷落幕时", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "(日)东野圭吾/南海出版公司/2015-1", "url": "https://m.douban.com/book/subject/26118072/", "release_date": null, "author": ["(日)东野圭吾"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27753770.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26118072", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 947, "max": 10, "value": 7.6}, "actions": [], "date": null, "year": ["2014-6"], "card_subtitle": "张悦然 / 2014 / 北京十月文艺出版社", "id": "25895467", "title": "鲤·一间不属于自己的房间", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "张悦然/北京十月文艺出版社/2014-6", "url": "https://m.douban.com/book/subject/25895467/", "release_date": null, "author": ["张悦然"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27309954.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25895467", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 46270, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2014-12-1"], "card_subtitle": "蔡崇达 / 2014 / 天津人民出版社", "id": "26278687", "title": "皮囊", "label": null, "type": "book", "description": "", "price": null, "press": ["天津人民出版社"], "info": "蔡崇达/天津人民出版社/2014-12-1", "url": "https://m.douban.com/book/subject/26278687/", "release_date": null, "author": ["蔡崇达"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27943411.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26278687", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4017, "max": 10, "value": 5.6}, "actions": ["可阅读"], "date": null, "year": ["2014-5"], "card_subtitle": "[日] 东野圭吾 / 2014 / 现代出版社", "id": "25841847", "title": "疾风回旋曲", "label": null, "type": "book", "description": "", "price": null, "press": ["现代出版社"], "info": "[日] 东野圭吾/现代出版社/2014-5", "url": "https://m.douban.com/book/subject/25841847/", "release_date": null, "author": ["[日] 东野圭吾"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27246019.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25841847", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3573, "max": 10, "value": 8.3}, "actions": ["可阅读"], "date": null, "year": ["2014-6"], "card_subtitle": "周浩晖 / 2014 / 北京时代华文书局", "id": "25884890", "title": "死亡通知单·暗黑者", "label": null, "type": "book", "description": "", "price": null, "press": ["北京时代华文书局"], "info": "周浩晖/北京时代华文书局/2014-6", "url": "https://m.douban.com/book/subject/25884890/", "release_date": null, "author": ["周浩晖"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27292243.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25884890", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1014, "max": 10, "value": 6.7}, "actions": ["可阅读"], "date": null, "year": ["2014-5"], "card_subtitle": "水木丁 / 2014 / 广西师范大学出版社", "id": "25870331", "title": "所有年轻人都将在黎明前死去", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "水木丁/广西师范大学出版社/2014-5", "url": "https://m.douban.com/book/subject/25870331/", "release_date": null, "author": ["水木丁"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27283193.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25870331", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 45, "max": 10, "value": 4.3}, "actions": [], "date": null, "year": ["2014"], "card_subtitle": "2014", "id": "25981237", "title": "系统出错空页面", "label": null, "type": "book", "description": "", "price": null, "press": [], "info": "2014", "url": "https://m.douban.com/book/subject/25981237/", "release_date": null, "author": [], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s28378548.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25981237", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1869, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2014-10-1"], "card_subtitle": "耀一 / 2014 / 湖南文艺出版社", "id": "25978608", "title": "再美也美不过想象", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "耀一/湖南文艺出版社/2014-10-1", "url": "https://m.douban.com/book/subject/25978608/", "release_date": null, "author": ["耀一"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27458968.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25978608", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 218, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2014-11-1"], "card_subtitle": "祁又一 / 2014 / 时代文艺出版社", "id": "26176397", "title": "又一本", "label": null, "type": "book", "description": "", "price": null, "press": ["时代文艺出版社"], "info": "祁又一/时代文艺出版社/2014-11-1", "url": "https://m.douban.com/book/subject/26176397/", "release_date": null, "author": ["祁又一"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27666600.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26176397", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1554, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2014-4"], "card_subtitle": "路内 / 2014 / 北京十月文艺出版社", "id": "25835907", "title": "天使坠落在哪里", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "路内/北京十月文艺出版社/2014-4", "url": "https://m.douban.com/book/subject/25835907/", "release_date": null, "author": ["路内"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27252719.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25835907", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 848, "max": 10, "value": 8.6}, "actions": [], "date": null, "year": ["2014-11-1"], "card_subtitle": "周笔畅 / 2014 / 湖南文艺出版社", "id": "26214729", "title": "如果我能说了算", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "周笔畅/湖南文艺出版社/2014-11-1", "url": "https://m.douban.com/book/subject/26214729/", "release_date": null, "author": ["周笔畅"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27722832.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26214729", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2375, "max": 10, "value": 8.6}, "actions": [], "date": null, "year": ["2014-6"], "card_subtitle": "[哥伦比亚] 加西亚·马尔克斯 / 2014 / 南海出版公司", "id": "25779593", "title": "族长的秋天", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[哥伦比亚] 加西亚·马尔克斯/南海出版公司/2014-6", "url": "https://m.douban.com/book/subject/25779593/", "release_date": null, "author": ["[哥伦比亚] 加西亚·马尔克斯"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27296579.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25779593", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2102, "max": 10, "value": 8.3}, "actions": [], "date": null, "year": ["2014-1-1"], "card_subtitle": "蒋晓云 / 2014 / 新星出版社", "id": "25764295", "title": "百年好合", "label": null, "type": "book", "description": "", "price": null, "press": ["新星出版社"], "info": "蒋晓云/新星出版社/2014-1-1", "url": "https://m.douban.com/book/subject/25764295/", "release_date": null, "author": ["蒋晓云"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27126657.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25764295", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2838, "max": 10, "value": 7.9}, "actions": ["可阅读"], "date": null, "year": ["2014-7-1"], "card_subtitle": "严明 / 2014 / 广西师范大学出版社", "id": "25913058", "title": "我爱这哭不出来的浪漫", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "严明/广西师范大学出版社/2014-7-1", "url": "https://m.douban.com/book/subject/25913058/", "release_date": null, "author": ["严明"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27346885.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25913058", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6746, "max": 10, "value": 8.1}, "actions": [], "date": null, "year": ["2014-10"], "card_subtitle": "(日)村上春树 / 2014 / 南海出版公司", "id": "25982254", "title": "大萝卜和难挑的鳄梨", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "(日)村上春树/南海出版公司/2014-10", "url": "https://m.douban.com/book/subject/25982254/", "release_date": null, "author": ["(日)村上春树"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27653606.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25982254", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5506, "max": 10, "value": 7.5}, "actions": ["可阅读"], "date": null, "year": ["2015-3"], "card_subtitle": "雷米 / 2015 / 重庆出版社", "id": "26277676", "title": "心理罪之第七个读者", "label": null, "type": "book", "description": "", "price": null, "press": ["重庆出版社"], "info": "雷米/重庆出版社/2015-3", "url": "https://m.douban.com/book/subject/26277676/", "release_date": null, "author": ["雷米"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27988720.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26277676", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1317, "max": 10, "value": 8.1}, "actions": [], "date": null, "year": ["2014-10"], "card_subtitle": "[美] 克里斯托弗·艾什伍德 / 2014 / 南方出版社", "id": "10564102", "title": "单身(50周年典藏纪念版)", "label": null, "type": "book", "description": "", "price": null, "press": ["南方出版社"], "info": "[美] 克里斯托弗·艾什伍德/南方出版社/2014-10", "url": "https://m.douban.com/book/subject/10564102/", "release_date": null, "author": ["[美] 克里斯托弗·艾什伍德"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27490052.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/10564102", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4699, "max": 10, "value": 7.3}, "actions": ["可阅读"], "date": null, "year": ["2014-8"], "card_subtitle": "顾漫 / 2014 / 花山文艺出版社", "id": "25934616", "title": "微微一笑很倾城(典藏版)", "label": null, "type": "book", "description": "", "price": null, "press": ["花山文艺出版社"], "info": "顾漫/花山文艺出版社/2014-8", "url": "https://m.douban.com/book/subject/25934616/", "release_date": null, "author": ["顾漫"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27346684.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25934616", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2757, "max": 10, "value": 5.6}, "actions": [], "date": null, "year": ["2014-7-1"], "card_subtitle": "严歌苓 / 2014 / 天津人民出版社", "id": "25923591", "title": "老师好美", "label": null, "type": "book", "description": "", "price": null, "press": ["天津人民出版社"], "info": "严歌苓/天津人民出版社/2014-7-1", "url": "https://m.douban.com/book/subject/25923591/", "release_date": null, "author": ["严歌苓"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27377588.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25923591", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5915, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2014-11-1"], "card_subtitle": "笛安 / 2014 / 长江文艺出版社", "id": "25852518", "title": "南方有令秧", "label": null, "type": "book", "description": "", "price": null, "press": ["长江文艺出版社"], "info": "笛安/长江文艺出版社/2014-11-1", "url": "https://m.douban.com/book/subject/25852518/", "release_date": null, "author": ["笛安"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27635525.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25852518", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 13719, "max": 10, "value": 9.0}, "actions": ["可阅读"], "date": null, "year": ["2014-9-1"], "card_subtitle": "[美] 艾萨克·阿西莫夫 / 2014 / 江苏文艺出版社", "id": "25829693", "title": "永恒的终结", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "[美] 艾萨克·阿西莫夫/江苏文艺出版社/2014-9-1", "url": "https://m.douban.com/book/subject/25829693/", "release_date": null, "author": ["[美] 艾萨克·阿西莫夫"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s29555070.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25829693", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2695, "max": 10, "value": 5.6}, "actions": ["可阅读"], "date": null, "year": ["2014-10-1"], "card_subtitle": "桐华 / 2014 / 湖南文艺出版社", "id": "25985785", "title": "半暖时光", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "桐华/湖南文艺出版社/2014-10-1", "url": "https://m.douban.com/book/subject/25985785/", "release_date": null, "author": ["桐华"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27466651.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25985785", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5529, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2014-11-1"], "card_subtitle": "毛路 赵珈禾 / 2014 / 北京联合出版公司", "id": "26146992", "title": "我们为什么会分手?", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "毛路/赵珈禾/北京联合出版公司/2014-11-1", "url": "https://m.douban.com/book/subject/26146992/", "release_date": null, "author": ["毛路"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27635418.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/26146992", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3832, "max": 10, "value": 7.3}, "actions": ["可阅读"], "date": null, "year": ["2014-6"], "card_subtitle": "秦明 / 2014 / 湖南文艺出版社", "id": "25896617", "title": "第十一根手指", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "秦明/湖南文艺出版社/2014-6", "url": "https://m.douban.com/book/subject/25896617/", "release_date": null, "author": ["秦明"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27293397.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25896617", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3350, "max": 10, "value": 7.2}, "actions": [], "date": null, "year": ["2014-3-10"], "card_subtitle": "杨杨 张皓宸 / 2014 / 湖南文艺出版社", "id": "25836825", "title": "你是最好的自己", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "杨杨/张皓宸/湖南文艺出版社/2014-3-10", "url": "https://m.douban.com/book/subject/25836825/", "release_date": null, "author": ["杨杨"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27228339.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25836825", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3985, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2014-8-1"], "card_subtitle": "陈谌 / 2014 / 天津人民出版社", "id": "25982794", "title": "世界上所有童话都是写给大人看的", "label": null, "type": "book", "description": "", "price": null, "press": ["天津人民出版社"], "info": "陈谌/天津人民出版社/2014-8-1", "url": "https://m.douban.com/book/subject/25982794/", "release_date": null, "author": ["陈谌"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27465070.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25982794", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 10421, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2014-7-1"], "card_subtitle": "丁墨 / 2014 / 百花洲文艺出版社", "id": "25912734", "title": "他来了,请闭眼", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "丁墨/百花洲文艺出版社/2014-7-1", "url": "https://m.douban.com/book/subject/25912734/", "release_date": null, "author": ["丁墨"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27310857.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25912734", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4857, "max": 10, "value": 7.9}, "actions": ["可阅读"], "date": null, "year": ["2014-9-1"], "card_subtitle": "紫金陈 / 2014 / 浦睿文化·湖南文艺出版社", "id": "25955474", "title": "坏小孩", "label": null, "type": "book", "description": "", "price": null, "press": ["浦睿文化·湖南文艺出版社"], "info": "紫金陈/浦睿文化·湖南文艺出版社/2014-9-1", "url": "https://m.douban.com/book/subject/25955474/", "release_date": null, "author": ["紫金陈"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27397965.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25955474", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5545, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2014-8-1"], "card_subtitle": "特立独行的猫 / 2014 / 武汉出版社", "id": "25917140", "title": "不要让未来的你,讨厌现在的自己", "label": null, "type": "book", "description": "", "price": null, "press": ["武汉出版社"], "info": "特立独行的猫/武汉出版社/2014-8-1", "url": "https://m.douban.com/book/subject/25917140/", "release_date": null, "author": ["特立独行的猫"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27313694.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25917140", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6808, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2013-12"], "card_subtitle": "(美)丹·布朗 / 2013 / 人民文学出版社", "id": "25756947", "title": "地狱", "label": null, "type": "book", "description": "", "price": null, "press": ["人民文学出版社"], "info": "(美)丹·布朗/人民文学出版社/2013-12", "url": "https://m.douban.com/book/subject/25756947/", "release_date": null, "author": ["(美)丹·布朗"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27173855.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25756947", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 285307, "max": 10, "value": 8.6}, "actions": [], "date": null, "year": ["2014-5"], "card_subtitle": "[日] 东野圭吾 / 2014 / 南海出版公司", "id": "25862578", "title": "解忧杂货店", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[日] 东野圭吾/南海出版公司/2014-5", "url": "https://m.douban.com/book/subject/25862578/", "release_date": null, "author": ["[日] 东野圭吾"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27264181.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25862578", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 84125, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2013-11-1"], "card_subtitle": "张嘉佳 / 2013 / 湖南文艺出版社", "id": "25747921", "title": "从你的全世界路过", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "张嘉佳/湖南文艺出版社/2013-11-1", "url": "https://m.douban.com/book/subject/25747921/", "release_date": null, "author": ["张嘉佳"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27102925.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25747921", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4667, "max": 10, "value": 6.6}, "actions": ["可阅读"], "date": null, "year": ["2013-12"], "card_subtitle": "张晓晗 / 2013 / 天津人民出版社", "id": "25786283", "title": "女王乔安", "label": null, "type": "book", "description": "", "price": null, "press": ["天津人民出版社"], "info": "张晓晗/天津人民出版社/2013-12", "url": "https://m.douban.com/book/subject/25786283/", "release_date": null, "author": ["张晓晗"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27172446.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25786283", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 14604, "max": 10, "value": 6.7}, "actions": ["可阅读"], "date": null, "year": ["2014-7-1"], "card_subtitle": "刘同 / 2014 / 中信出版社", "id": "25895442", "title": "你的孤独,虽败犹荣", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "刘同/中信出版社/2014-7-1", "url": "https://m.douban.com/book/subject/25895442/", "release_date": null, "author": ["刘同"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27310359.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25895442", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6606, "max": 10, "value": 7.6}, "actions": [], "date": null, "year": ["2011-8"], "card_subtitle": "天衣有风 / 2011 / 江苏文艺出版社", "id": "6782521", "title": "凤囚凰", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "天衣有风/江苏文艺出版社/2011-8", "url": "https://m.douban.com/book/subject/6782521/", "release_date": null, "author": ["天衣有风"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27325668.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/6782521", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 9240, "max": 10, "value": 9.1}, "actions": ["可阅读"], "date": null, "year": ["2014-4-1"], "card_subtitle": "(美)马里奥·普佐 / 2014 / 江苏文艺出版社", "id": "25762009", "title": "教父", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "(美)马里奥·普佐/江苏文艺出版社/2014-4-1", "url": "https://m.douban.com/book/subject/25762009/", "release_date": null, "author": ["(美)马里奥·普佐"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27227804.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25762009", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 7901, "max": 10, "value": 8.8}, "actions": ["可阅读"], "date": null, "year": ["2014-5"], "card_subtitle": "严歌苓 / 2014 / 作家出版社", "id": "25882276", "title": "陆犯焉识", "label": null, "type": "book", "description": "", "price": null, "press": ["作家出版社"], "info": "严歌苓/作家出版社/2014-5", "url": "https://m.douban.com/book/subject/25882276/", "release_date": null, "author": ["严歌苓"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27285773.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25882276", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4306, "max": 10, "value": 7.2}, "actions": [], "date": null, "year": ["2014-1-1"], "card_subtitle": "韩寒  监制 / 2014 / 三秦出版社", "id": "25798977", "title": "去你家玩好吗", "label": null, "type": "book", "description": "", "price": null, "press": ["三秦出版社"], "info": "韩寒  监制/三秦出版社/2014-1-1", "url": "https://m.douban.com/book/subject/25798977/", "release_date": null, "author": ["韩寒  监制"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27196244.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25798977", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2897, "max": 10, "value": 6.8}, "actions": ["可阅读"], "date": null, "year": ["2014-4"], "card_subtitle": "丁丁张 / 2014 / 中信出版社", "id": "25847224", "title": "世界与你无关", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "丁丁张/中信出版社/2014-4", "url": "https://m.douban.com/book/subject/25847224/", "release_date": null, "author": ["丁丁张"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27245851.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25847224", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2868, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2013-11-20"], "card_subtitle": "宝树 / 2013 / 长江文艺出版社", "id": "24935042", "title": "时间之墟", "label": null, "type": "book", "description": "", "price": null, "press": ["长江文艺出版社"], "info": "宝树/长江文艺出版社/2013-11-20", "url": "https://m.douban.com/book/subject/24935042/", "release_date": null, "author": ["宝树"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27127637.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/24935042", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4661, "max": 10, "value": 7.6}, "actions": [], "date": null, "year": ["2014-6"], "card_subtitle": "庆山 / 2014 / 北京十月文艺出版社", "id": "25898124", "title": "得未曾有", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "庆山/北京十月文艺出版社/2014-6", "url": "https://m.douban.com/book/subject/25898124/", "release_date": null, "author": ["庆山"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27314302.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25898124", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2505, "max": 10, "value": 8.3}, "actions": ["可阅读"], "date": null, "year": ["2013-12-31"], "card_subtitle": "曾良君 / 2013 / 北京联合出版公司", "id": "25778837", "title": "时差党", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "曾良君/北京联合出版公司/2013-12-31", "url": "https://m.douban.com/book/subject/25778837/", "release_date": null, "author": ["曾良君"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27156451.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25778837", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1773, "max": 10, "value": 7.3}, "actions": ["可阅读"], "date": null, "year": ["2014-3-15"], "card_subtitle": "苏美 / 2014 / 江苏文艺出版社", "id": "25837146", "title": "倾我所有去生活", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "苏美/江苏文艺出版社/2014-3-15", "url": "https://m.douban.com/book/subject/25837146/", "release_date": null, "author": ["苏美"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27228665.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25837146", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3540, "max": 10, "value": 6.8}, "actions": [], "date": null, "year": ["2014-6-1"], "card_subtitle": "辛夷坞 / 2014 / 百花洲文艺出版社", "id": "25900190", "title": "应许之日", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "辛夷坞/百花洲文艺出版社/2014-6-1", "url": "https://m.douban.com/book/subject/25900190/", "release_date": null, "author": ["辛夷坞"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27297151.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25900190", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2864, "max": 10, "value": 7.5}, "actions": ["可阅读"], "date": null, "year": ["2014-6"], "card_subtitle": "囧叔 / 2014 / 湖南文艺出版社", "id": "25897333", "title": "我讲个故事,你可别当真啊", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "囧叔/湖南文艺出版社/2014-6", "url": "https://m.douban.com/book/subject/25897333/", "release_date": null, "author": ["囧叔"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27294234.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25897333", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2922, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2014-3-20"], "card_subtitle": "韩寒 / 2014 / 浙江文艺出版社", "id": "25850737", "title": "想得美", "label": null, "type": "book", "description": "", "price": null, "press": ["浙江文艺出版社"], "info": "韩寒/浙江文艺出版社/2014-3-20", "url": "https://m.douban.com/book/subject/25850737/", "release_date": null, "author": ["韩寒"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27275257.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25850737", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5730, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2014-7-1"], "card_subtitle": "[法]米兰·昆德拉 / 2014 / 上海译文出版社", "id": "25881325", "title": "庆祝无意义", "label": null, "type": "book", "description": "", "price": null, "press": ["上海译文出版社"], "info": "[法]米兰·昆德拉/上海译文出版社/2014-7-1", "url": "https://m.douban.com/book/subject/25881325/", "release_date": null, "author": ["[法]米兰·昆德拉"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27337277.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25881325", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2854, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2014-1"], "card_subtitle": "顾西爵 / 2014 / 百花洲文艺出版社", "id": "25789570", "title": "满满都是我对你的爱", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "顾西爵/百花洲文艺出版社/2014-1", "url": "https://m.douban.com/book/subject/25789570/", "release_date": null, "author": ["顾西爵"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27176754.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25789570", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5194, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2014-8-1"], "card_subtitle": "张嘉佳 / 2014 / 湖南人民出版社", "id": "25775069", "title": "让我留在你身边", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南人民出版社"], "info": "张嘉佳/湖南人民出版社/2014-8-1", "url": "https://m.douban.com/book/subject/25775069/", "release_date": null, "author": ["张嘉佳"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27331707.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25775069", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 5028, "max": 10, "value": 8.2}, "actions": [], "date": null, "year": ["2013-12"], "card_subtitle": "江南 / 2013 / 长江出版社", "id": "25825717", "title": "龙族Ⅲ", "label": null, "type": "book", "description": "", "price": null, "press": ["长江出版社"], "info": "江南/长江出版社/2013-12", "url": "https://m.douban.com/book/subject/25825717/", "release_date": null, "author": ["江南"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27222807.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25825717", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2800, "max": 10, "value": 7.0}, "actions": ["可阅读"], "date": null, "year": ["2014-4-1"], "card_subtitle": "Lydia / 2014 / 湖南文艺出版社", "id": "25852441", "title": "当我足够好,才会遇见你", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "Lydia/湖南文艺出版社/2014-4-1", "url": "https://m.douban.com/book/subject/25852441/", "release_date": null, "author": ["Lydia"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27245011.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25852441", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3135, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2014-1-1"], "card_subtitle": "墨宝非宝 / 2014 / 百花洲文艺出版社", "id": "25803547", "title": "一生一世,美人骨", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "墨宝非宝/百花洲文艺出版社/2014-1-1", "url": "https://m.douban.com/book/subject/25803547/", "release_date": null, "author": ["墨宝非宝"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27193109.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25803547", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1772, "max": 10, "value": 7.7}, "actions": ["可阅读"], "date": null, "year": ["2014-3-26"], "card_subtitle": "蔡智恒 / 2014 / 北京联合出版公司", "id": "25830077", "title": "阿尼玛", "label": null, "type": "book", "description": "", "price": null, "press": ["北京联合出版公司"], "info": "蔡智恒/北京联合出版公司/2014-3-26", "url": "https://m.douban.com/book/subject/25830077/", "release_date": null, "author": ["蔡智恒"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27245683.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25830077", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3317, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2014-2-14"], "card_subtitle": "迈克尔·道布斯 / 2014 / 百花洲文艺出版社", "id": "25808056", "title": "纸牌屋", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "迈克尔·道布斯/百花洲文艺出版社/2014-2-14", "url": "https://m.douban.com/book/subject/25808056/", "release_date": null, "author": ["迈克尔·道布斯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27207152.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25808056", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 36824, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2014-9-1"], "card_subtitle": "大冰 / 2014 / 湖南文艺出版社", "id": "25984204", "title": "乖,摸摸头", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "大冰/湖南文艺出版社/2014-9-1", "url": "https://m.douban.com/book/subject/25984204/", "release_date": null, "author": ["大冰"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27466554.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25984204", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1218, "max": 10, "value": 6.8}, "actions": ["可阅读"], "date": null, "year": ["2014-5"], "card_subtitle": "这么远那么近 / 2014 / 吉林人民出版社", "id": "25866817", "title": "有些路,只能一个人走", "label": null, "type": "book", "description": "", "price": null, "press": ["吉林人民出版社"], "info": "这么远那么近/吉林人民出版社/2014-5", "url": "https://m.douban.com/book/subject/25866817/", "release_date": null, "author": ["这么远那么近"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27261018.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25866817", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1088, "max": 10, "value": 6.9}, "actions": [], "date": null, "year": ["2014-1"], "card_subtitle": "荞麦 / 2014 / 中信出版社", "id": "25746084", "title": "这个世界上的一切都是瘦子的", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "荞麦/中信出版社/2014-1", "url": "https://m.douban.com/book/subject/25746084/", "release_date": null, "author": ["荞麦"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27185556.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25746084", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4077, "max": 10, "value": 9.1}, "actions": [], "date": null, "year": ["2014-4"], "card_subtitle": "[日] 贵志祐介 / 2014 / 上海译文出版社", "id": "25752955", "title": "来自新世界 (上下)", "label": null, "type": "book", "description": "", "price": null, "press": ["上海译文出版社"], "info": "[日] 贵志祐介/上海译文出版社/2014-4", "url": "https://m.douban.com/book/subject/25752955/", "release_date": null, "author": ["[日] 贵志祐介"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27270922.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25752955", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2631, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2014-1"], "card_subtitle": "严歌苓 / 2014 / 人民文学出版社", "id": "25800697", "title": "妈阁是座城", "label": null, "type": "book", "description": "", "price": null, "press": ["人民文学出版社"], "info": "严歌苓/人民文学出版社/2014-1", "url": "https://m.douban.com/book/subject/25800697/", "release_date": null, "author": ["严歌苓"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27198580.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25800697", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1540, "max": 10, "value": 8.1}, "actions": ["可阅读"], "date": null, "year": ["2014-1-1"], "card_subtitle": "张大春 / 2014 / 广西师范大学出版社", "id": "25802944", "title": "大唐李白·少年游", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "张大春/广西师范大学出版社/2014-1-1", "url": "https://m.douban.com/book/subject/25802944/", "release_date": null, "author": ["张大春"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27201117.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25802944", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2610, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2014-2"], "card_subtitle": "[日]堀辰雄 / 2014 / 南海出版公司", "id": "25788054", "title": "起风了", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "[日]堀辰雄/南海出版公司/2014-2", "url": "https://m.douban.com/book/subject/25788054/", "release_date": null, "author": ["[日]堀辰雄"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27200620.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25788054", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1457, "max": 10, "value": 8.2}, "actions": ["可阅读"], "date": null, "year": ["2014-1-1"], "card_subtitle": "桑格格 / 2014 / 广西师范大学出版社", "id": "25784438", "title": "不留心,看不见", "label": null, "type": "book", "description": "", "price": null, "press": ["广西师范大学出版社"], "info": "桑格格/广西师范大学出版社/2014-1-1", "url": "https://m.douban.com/book/subject/25784438/", "release_date": null, "author": ["桑格格"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27172788.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25784438", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3354, "max": 10, "value": 8.0}, "actions": [], "date": null, "year": ["2014-8"], "card_subtitle": "王欣 / 2014 / 北京十月文艺出版社", "id": "25957554", "title": "在不安的世界安静的活", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "王欣/北京十月文艺出版社/2014-8", "url": "https://m.douban.com/book/subject/25957554/", "release_date": null, "author": ["王欣"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27401489.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25957554", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1538, "max": 10, "value": 6.7}, "actions": ["可阅读"], "date": null, "year": ["2014-7"], "card_subtitle": "顾西爵 / 2014 / 百花洲文艺出版社", "id": "25913805", "title": "对的时间对的人", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "顾西爵/百花洲文艺出版社/2014-7", "url": "https://m.douban.com/book/subject/25913805/", "release_date": null, "author": ["顾西爵"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27315215.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25913805", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1018, "max": 10, "value": 6.1}, "actions": ["可阅读"], "date": null, "year": ["2014-5-1"], "card_subtitle": "私奔锦 / 2014 / 中国友谊出版公司", "id": "25856322", "title": "北京,你是我今夜不及的梦", "label": null, "type": "book", "description": "", "price": null, "press": ["中国友谊出版公司"], "info": "私奔锦/中国友谊出版公司/2014-5-1", "url": "https://m.douban.com/book/subject/25856322/", "release_date": null, "author": ["私奔锦"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27250396.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25856322", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2769, "max": 10, "value": 7.9}, "actions": ["可阅读"], "date": null, "year": ["2014-4"], "card_subtitle": "木浮生 / 2014 / 百花洲文艺出版社", "id": "25851002", "title": "世界微尘里", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "木浮生/百花洲文艺出版社/2014-4", "url": "https://m.douban.com/book/subject/25851002/", "release_date": null, "author": ["木浮生"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27255063.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25851002", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1744, "max": 10, "value": 7.4}, "actions": [], "date": null, "year": ["2013-11-1"], "card_subtitle": "丰子恺 编著 / 2013 / 新星出版社", "id": "25737866", "title": "梵高生活", "label": null, "type": "book", "description": "", "price": null, "press": ["新星出版社"], "info": "丰子恺 编著/新星出版社/2013-11-1", "url": "https://m.douban.com/book/subject/25737866/", "release_date": null, "author": ["丰子恺 编著"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27099136.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25737866", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6694, "max": 10, "value": 7.5}, "actions": [], "date": null, "year": ["2014-4-1"], "card_subtitle": "高晓松 / 2014 / 湖南文艺出版社", "id": "25846182", "title": "鱼羊野史·第1卷", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "高晓松/湖南文艺出版社/2014-4-1", "url": "https://m.douban.com/book/subject/25846182/", "release_date": null, "author": ["高晓松"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27237948.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25846182", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 892, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2014-5-1"], "card_subtitle": "烽火戏诸侯 / 2014 / 花城出版社", "id": "25843937", "title": "那些有钱的年轻人", "label": null, "type": "book", "description": "", "price": null, "press": ["花城出版社"], "info": "烽火戏诸侯/花城出版社/2014-5-1", "url": "https://m.douban.com/book/subject/25843937/", "release_date": null, "author": ["烽火戏诸侯"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27255161.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25843937", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 8149, "max": 10, "value": 7.9}, "actions": [], "date": null, "year": ["2014-7-25"], "card_subtitle": "八月长安 / 2014 / 湖南文艺出版社", "id": "25829434", "title": "暗恋·橘生淮南", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "八月长安/湖南文艺出版社/2014-7-25", "url": "https://m.douban.com/book/subject/25829434/", "release_date": null, "author": ["八月长安"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27220774.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25829434", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4069, "max": 10, "value": 9.0}, "actions": [], "date": null, "year": ["2014-2"], "card_subtitle": "(葡)若泽·萨拉马戈 / 2014 / 南海出版公司", "id": "20428302", "title": "失明症漫记", "label": null, "type": "book", "description": "", "price": null, "press": ["南海出版公司"], "info": "(葡)若泽·萨拉马戈/南海出版公司/2014-2", "url": "https://m.douban.com/book/subject/20428302/", "release_date": null, "author": ["(葡)若泽·萨拉马戈"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27217828.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/20428302", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 3032, "max": 10, "value": 7.7}, "actions": [], "date": null, "year": ["2014-5"], "card_subtitle": "[加]艾丽丝·门罗 / 2014 / 北京十月文艺出版社", "id": "25870629", "title": "亲爱的生活", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "[加]艾丽丝·门罗/北京十月文艺出版社/2014-5", "url": "https://m.douban.com/book/subject/25870629/", "release_date": null, "author": ["[加]艾丽丝·门罗"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27273519.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25870629", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1863, "max": 10, "value": 7.4}, "actions": ["可阅读"], "date": null, "year": ["2014-1-1"], "card_subtitle": "顾西爵 / 2014 / 百花洲文艺出版社", "id": "25788727", "title": "最美遇见你", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "顾西爵/百花洲文艺出版社/2014-1-1", "url": "https://m.douban.com/book/subject/25788727/", "release_date": null, "author": ["顾西爵"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27173962.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25788727", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1875, "max": 10, "value": 6.9}, "actions": ["可阅读"], "date": null, "year": ["2013-12-31"], "card_subtitle": "流潋紫 / 2013 / 中国华侨出版社", "id": "25792536", "title": "后宫·如懿传4", "label": null, "type": "book", "description": "", "price": null, "press": ["中国华侨出版社"], "info": "流潋紫/中国华侨出版社/2013-12-31", "url": "https://m.douban.com/book/subject/25792536/", "release_date": null, "author": ["流潋紫"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27187971.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25792536", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2077, "max": 10, "value": 7.1}, "actions": ["可阅读"], "date": null, "year": ["2014-4-26"], "card_subtitle": "(英)罗伯特·加尔布雷思 / 2014 / 人民文学出版社", "id": "25840545", "title": "布谷鸟的呼唤", "label": null, "type": "book", "description": "", "price": null, "press": ["人民文学出版社"], "info": "(英)罗伯特·加尔布雷思/人民文学出版社/2014-4-26", "url": "https://m.douban.com/book/subject/25840545/", "release_date": null, "author": ["(英)罗伯特·加尔布雷思"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27264313.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25840545", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1656, "max": 10, "value": 8.7}, "actions": [], "date": null, "year": ["2014-1-1"], "card_subtitle": "(美)乔治·R. R. 马丁 / 2014 / 重庆出版社", "id": "25778124", "title": "冰与火之歌:七王国的骑士", "label": null, "type": "book", "description": "", "price": null, "press": ["重庆出版社"], "info": "(美)乔治·R. R. 马丁/重庆出版社/2014-1-1", "url": "https://m.douban.com/book/subject/25778124/", "release_date": null, "author": ["(美)乔治·R. R. 马丁"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27176600.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25778124", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 484, "max": 10, "value": 3.2}, "actions": [], "date": null, "year": ["2014-5-15"], "card_subtitle": "闵露莹 / 2014 / 华中科技大学出版社", "id": "25857983", "title": "黄金时代", "label": null, "type": "book", "description": "", "price": null, "press": ["华中科技大学出版社"], "info": "闵露莹/华中科技大学出版社/2014-5-15", "url": "https://m.douban.com/book/subject/25857983/", "release_date": null, "author": ["闵露莹"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27277093.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25857983", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 6403, "max": 10, "value": 7.0}, "actions": [], "date": null, "year": ["2014-4"], "card_subtitle": "丁墨 / 2014 / 百花洲文艺出版社", "id": "25767862", "title": "如果蜗牛有爱情", "label": null, "type": "book", "description": "", "price": null, "press": ["百花洲文艺出版社"], "info": "丁墨/百花洲文艺出版社/2014-4", "url": "https://m.douban.com/book/subject/25767862/", "release_date": null, "author": ["丁墨"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27241737.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25767862", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2863, "max": 10, "value": 7.6}, "actions": ["可阅读"], "date": null, "year": ["2014-3"], "card_subtitle": "紫金陈 / 2014 / 中国电影出版社", "id": "25827236", "title": "高智商犯罪2", "label": null, "type": "book", "description": "", "price": null, "press": ["中国电影出版社"], "info": "紫金陈/中国电影出版社/2014-3", "url": "https://m.douban.com/book/subject/25827236/", "release_date": null, "author": ["紫金陈"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27219303.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25827236", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2084, "max": 10, "value": 7.8}, "actions": [], "date": null, "year": ["2014-1"], "card_subtitle": "三毛 / 2014 / 北京十月文艺出版社", "id": "25803923", "title": "你是我不及的梦", "label": null, "type": "book", "description": "", "price": null, "press": ["北京十月文艺出版社"], "info": "三毛/北京十月文艺出版社/2014-1", "url": "https://m.douban.com/book/subject/25803923/", "release_date": null, "author": ["三毛"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27203704.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25803923", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 4964, "max": 10, "value": 7.3}, "actions": ["可阅读"], "date": null, "year": ["2014-2-1"], "card_subtitle": "紫金陈 / 2014 / 浦睿文化·湖南文艺出版社", "id": "25799686", "title": "无证之罪", "label": null, "type": "book", "description": "", "price": null, "press": ["浦睿文化·湖南文艺出版社"], "info": "紫金陈/浦睿文化·湖南文艺出版社/2014-2-1", "url": "https://m.douban.com/book/subject/25799686/", "release_date": null, "author": ["紫金陈"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27204998.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25799686", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 962, "max": 10, "value": 7.1}, "actions": [], "date": null, "year": ["2014-2"], "card_subtitle": "山亭夜宴 / 2014 / 现代出版社", "id": "25807523", "title": "唯爱与美食不可辜负", "label": null, "type": "book", "description": "", "price": null, "press": ["现代出版社"], "info": "山亭夜宴/现代出版社/2014-2", "url": "https://m.douban.com/book/subject/25807523/", "release_date": null, "author": ["山亭夜宴"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27197149.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25807523", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2294, "max": 10, "value": 6.9}, "actions": ["可阅读"], "date": null, "year": ["2014-7"], "card_subtitle": "一个工作室 / 2014 / 作家出版社", "id": "25933442", "title": "不散的宴席", "label": null, "type": "book", "description": "", "price": null, "press": ["作家出版社"], "info": "一个工作室/作家出版社/2014-7", "url": "https://m.douban.com/book/subject/25933442/", "release_date": null, "author": ["一个工作室"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27346872.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25933442", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 541, "max": 10, "value": 6.6}, "actions": [], "date": null, "year": ["2014-6"], "card_subtitle": "黄石PK / 2014 / 江苏文艺出版社", "id": "25905855", "title": "青梅竹马,去哪儿啊", "label": null, "type": "book", "description": "", "price": null, "press": ["江苏文艺出版社"], "info": "黄石PK/江苏文艺出版社/2014-6", "url": "https://m.douban.com/book/subject/25905855/", "release_date": null, "author": ["黄石PK"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27316606.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25905855", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1577, "max": 10, "value": 7.0}, "actions": ["可阅读"], "date": null, "year": ["2014-6"], "card_subtitle": "胡紫微 / 2014 / 中信出版社", "id": "25886895", "title": "如何成为一个妖孽", "label": null, "type": "book", "description": "", "price": null, "press": ["中信出版社"], "info": "胡紫微/中信出版社/2014-6", "url": "https://m.douban.com/book/subject/25886895/", "release_date": null, "author": ["胡紫微"], "cover": {"url": "https://img3.doubanio.com/view/subject/l/public/s27315763.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25886895", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 1366, "max": 10, "value": 6.7}, "actions": ["可阅读"], "date": null, "year": ["2014-3"], "card_subtitle": "[美]维罗尼卡·罗斯 Veronica Roth / 2014 / 四川文艺出版社", "id": "25831464", "title": "分歧者", "label": null, "type": "book", "description": "", "price": null, "press": ["四川文艺出版社"], "info": "[美]维罗尼卡·罗斯/Veronica Roth/四川文艺出版社/2014-3", "url": "https://m.douban.com/book/subject/25831464/", "release_date": null, "author": ["[美]维罗尼卡·罗斯"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27222978.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25831464", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}
{"original_price": null, "rating": {"count": 2923, "max": 10, "value": 7.0}, "actions": [], "date": null, "year": ["2014-6-1"], "card_subtitle": "张嘉佳 / 2014 / 湖南文艺出版社", "id": "25879461", "title": "从你的全世界路过", "label": null, "type": "book", "description": "", "price": null, "press": ["湖南文艺出版社"], "info": "张嘉佳/湖南文艺出版社/2014-6-1", "url": "https://m.douban.com/book/subject/25879461/", "release_date": null, "author": ["张嘉佳"], "cover": {"url": "https://img1.doubanio.com/view/subject/l/public/s27327329.jpg", "width": 0, "shape": "rectangle", "height": 0}, "uri": "douban://douban.com/book/25879461", "subtype": "", "reviewer_name": "", "null_rating_reason": ""}

猜你喜欢

转载自blog.csdn.net/ccnuacmhdu/article/details/80461424