zhidao.py
baiduspider.models.zhidao
⚓︎
知道搜索返回值模型模块
此文件定义的所有现有的知道搜索返回值模型并编写了自动构建函数。
ZhidaoNormal
⚓︎
普通搜索结果模型
这是一个遵照BaiduSpider知道搜索基本搜索结果结果模型创建的返回模型类。
Attributes:
Name | Type | Description |
---|---|---|
agree |
int |
回答赞同数 |
answer |
str | None |
回答简介 |
answerer |
str |
回答者 |
count |
int | None |
回答总数 |
date |
datetime.datetime |
回答发布日期 |
title |
str |
问题标题 |
question |
str | None |
问题简介 |
url |
str |
问题链接 |
plain |
dict |
源搜索结果字典 |
ZhidaoResult
⚓︎
知道搜索结果模型
这是一个遵照BaiduSpider知道搜索结果结果模型创建的返回模型类。
Attributes:
Name | Type | Description |
---|---|---|
results |
List[ZhidaoNormal] |
普通搜索结果列表 |
pages |
int |
搜索结果页数 |
total |
int |
搜索结果总数 |
plain |
list |
源搜索结果列表 |