user_contents
FragVoice_up
dataclass
音频碎片
Attributes:
Name | Type | Description |
---|---|---|
md5 |
str
|
音频md5 |
duration |
int
|
音频长度 以秒为单位 |
Contents_up
dataclass
内容碎片列表
Attributes:
Name | Type | Description |
---|---|---|
objs |
list[TypeFragment]
|
所有内容碎片的混合列表 |
text |
str
|
文本内容 |
texts |
list[TypeFragText]
|
纯文本碎片列表 |
links |
list[FragLink_up]
|
链接碎片列表 |
voice |
FragVoice_up
|
音频碎片 |
UserInfo_u
dataclass
用户信息
Attributes:
Name | Type | Description |
---|---|---|
user_id |
int
|
user_id |
portrait |
str
|
portrait |
user_name |
str
|
用户名 |
nick_name_new |
str
|
新版昵称 |
nick_name |
str
|
用户昵称 |
show_name |
str
|
显示名称 |
log_name |
str
|
用于在日志中记录用户信息 |
UserPost
dataclass
用户历史回复信息
Attributes:
Name | Type | Description |
---|---|---|
text |
str
|
文本内容 |
contents |
Contents_up
|
正文内容碎片列表 |
fid |
int
|
所在吧id |
tid |
int
|
所在主题帖id |
pid |
int
|
回复id |
user |
UserInfo_u
|
发布者的用户信息 |
author_id |
int
|
发布者的user_id |
is_comment |
bool
|
是否为楼中楼 |
create_time |
int
|
创建时间 10位时间戳 以秒为单位 |
UserPosts
dataclass
用户历史回复信息列表
Attributes:
Name | Type | Description |
---|---|---|
objs |
list[UserPost]
|
用户历史回复信息列表 |
fid |
int
|
所在吧id |
tid |
int
|
所在主题帖id |
UserPostss
dataclass
用户历史回复信息列表的列表
Attributes:
Name | Type | Description |
---|---|---|
objs |
list[UserPosts]
|
用户历史回复信息列表的列表 |
err |
Exception | None
|
捕获的异常 |
FragImage_ut
dataclass
图像碎片
Attributes:
Name | Type | Description |
---|---|---|
src |
str
|
小图链接 宽580px 一定是静态图 |
big_src |
str
|
大图链接 宽960px |
origin_src |
str
|
原图链接 |
origin_size |
int
|
原图大小 |
width |
int
|
图像宽度 |
height |
int
|
图像高度 |
hash |
str
|
百度图床hash |
Contents_ut
dataclass
内容碎片列表
Attributes:
Name | Type | Description |
---|---|---|
objs |
list[TypeFragment]
|
所有内容碎片的混合列表 |
text |
str
|
文本内容 |
texts |
list[TypeFragText]
|
纯文本碎片列表 |
emojis |
list[FragEmoji_ut]
|
表情碎片列表 |
imgs |
list[FragImage_ut]
|
图像碎片列表 |
ats |
list[FragAt_ut]
|
@碎片列表 |
links |
list[FragLink_ut]
|
链接碎片列表 |
video |
FragVideo_ut
|
视频碎片 |
voice |
FragVoice_ut
|
音频碎片 |
UserThread
dataclass
主题帖信息
Attributes:
Name | Type | Description |
---|---|---|
text |
str
|
文本内容 |
contents |
Contents_ut
|
正文内容碎片列表 |
title |
str
|
标题 |
fid |
int
|
所在吧id |
fname |
str
|
所在贴吧名 |
tid |
int
|
主题帖tid |
pid |
int
|
首楼回复pid |
user |
UserInfo_u
|
发布者的用户信息 |
author_id |
int
|
发布者的user_id |
type |
int
|
帖子类型 |
is_help |
bool
|
是否为求助帖 |
vote_info |
VoteInfo
|
投票信息 |
view_num |
int
|
浏览量 |
reply_num |
int
|
回复数 |
share_num |
int
|
分享数 |
agree |
int
|
点赞数 |
disagree |
int
|
点踩数 |
create_time |
int
|
创建时间 10位时间戳 以秒为单位 |
UserThreads
dataclass
用户发布主题帖列表
Attributes:
Name | Type | Description |
---|---|---|
objs |
list[UserThread]
|
用户发布主题帖列表 |
err |
Exception | None
|
捕获的异常 |