返回类型结构说明
# Iqdb
# Iqdb主类说明
Iqdb(**requests_kwargs) # 代理设置
1
# 数据返回值列表
提示
数据结构也可以查阅源代码
- name: 源代码
desc: 🚀强的人直接看这个
link: https://github.com/kitUIN/PicImageSearch/blob/main/PicImageSearch/model/iqdb.py
bgColor: '#DFEEE7'
textColor: '#2A3344'
1
2
3
4
5
2
3
4
5
情境
以Demo
中的代码为例子
变量 | 内容 | 类型 |
---|---|---|
resp.origin | 原始返回值 | list |
resp.raw | 结果返回值(具体见下表) | list |
resp.more | 更多结果返回值(低相似度)(与raw一致) | list |
resp.saucenao | SauceNao搜索链接 | str |
resp.ascii2d | Ascii2d搜索链接 | str |
resp.tineye | TinEye搜索链接 | str |
resp.google | Google搜索链接 | str |
提示
resp.raw
存储了所有的返回结果
例如resp.raw[0]
内存放了第一条搜索结果
以下列表以resp.raw[0]
为例
变量 | 内容 | 类型 |
---|---|---|
resp.raw[0].similarity | 相似值 | str |
resp.raw[0].thumbnail | 缩略图地址 | str |
resp.raw[0].source | 来源平台名称 | str |
resp.raw[0].url | 地址 | str |
resp.raw[0].content | 备注 | str |
resp.raw[0].size | 原图长宽大小 | str |
resp.raw[0].other_source | 其他来源 | list |
提示
resp.raw[0].other_source
内的结构示例为: (可能为空)
{
"source":"Anime-Pictures",
"url": "http://www.iqdb.org/anime-pictures/5/0/4/50430189318ee7163a0ee8219cbaf01e.jpg"
}
1
2
3
4
2
3
4
上次更新: 2022/03/27, 20:47:51