jingyan.py
baiduspider.models.jingyan
⚓︎
经验搜索返回值模型模块
此文件定义的所有现有的经验搜索返回值模型并编写了自动构建函数。
JingyanNormal
⚓︎
普通搜索结果模型
这是一个遵照BaiduSpider经验搜索基本搜索结果结果模型创建的返回模型类。
Attributes:
Name | Type | Description |
---|---|---|
title |
str |
经验标题 |
url |
str |
经验链接 |
des |
str |
经验简介 |
pub_date |
datetime.datetime |
经验发布日期 |
category |
List[str] |
经验分类 |
votes |
int |
经验的支持票数 |
publisher |
JingyanPublisher |
经验发布者信息 |
is_original |
bool |
经验是否为原创 |
is_outstanding |
bool |
经验是否为优秀经验 |
plain |
dict |
源搜索结果字典 |
JingyanPublisher
⚓︎
经验发布者模型
这是一个遵照BaiduSpider经验搜索经验发布者结果模型创建的返回模型类。
Attributes:
Name | Type | Description |
---|---|---|
name |
str |
经验上传者用户名 |
url |
str |
经验上传者链接 |
plain |
dict |
源搜索结果字典 |
JingyanResult
⚓︎
经验搜索结果模型
这是一个遵照BaiduSpider经验搜索结果结果模型创建的返回模型类。
Attributes:
Name | Type | Description |
---|---|---|
results |
List[JingyanNormal] |
普通搜索结果列表 |
pages |
int |
搜索结果页数 |
total |
int |
搜索结果总数 |
plain |
list |
源搜索结果列表 |