video.py
baiduspider.models.video
⚓︎
视频搜索返回值模型模块
此文件定义的所有现有的视频搜索返回值模型并编写了自动构建函数。
VideoNormal
⚓︎
视频搜索普通搜索结果模型
这是一个遵照BaiduSpider视频搜索基本搜索结果结果模型创建的返回模型类。
Attributes:
Name | Type | Description |
---|---|---|
des |
str |
视频简介 |
img |
str |
视频封面图片链接 |
origin |
str | None |
视频来源(作者) |
pub_time |
datetime.datetime |
视频发布时间 |
length |
datetime.time |
视频时长 |
title |
str |
视频标题 |
url |
str |
视频链接 |
plain |
dict |
源搜索结果字典 |
VideoResult
⚓︎
视频搜索结果模型
这是一个遵照BaiduSpider视频搜索结果结果模型创建的返回模型类。
Attributes:
Name | Type | Description |
---|---|---|
results |
List[VideoNormal] |
普通搜索结果列表 |
is_last |
bool |
当前页数是否为最后一页 |
plain |
list |
源搜索结果列表 |