searches
ExactSearch
dataclass
搜索结果
Attributes:
Name | Type | Description |
---|---|---|
text |
str
|
文本内容 |
title |
str
|
标题 |
fname |
str
|
所在贴吧名 |
tid |
int
|
所在主题帖id |
pid |
int
|
回复id |
show_name |
str
|
发布者的显示名称 |
is_comment |
bool
|
是否楼中楼 |
create_time |
int
|
创建时间 |
Page_exsch
dataclass
页信息
Attributes:
Name | Type | Description |
---|---|---|
page_size |
int
|
页大小 |
current_page |
int
|
当前页码 |
total_page |
int
|
总页码 |
total_count |
int
|
总计数 |
has_more |
bool
|
是否有后继页 |
has_prev |
bool
|
是否有前驱页 |
ExactSearches
dataclass
搜索结果列表
Attributes:
Name | Type | Description |
---|---|---|
objs |
list[ExactSearch]
|
搜索结果列表 |
err |
Exception | None
|
捕获的异常 |
page |
Page_exsch
|
页信息 |
has_more |
bool
|
是否还有下一页 |