返回类型结构说明
# E-hentai
# E-hentai主类说明
EHentai(**requests_kwargs) # 代理设置
1
⚠注意
E-Hentai
与ExHentai
不支持单色图片
的搜索,例如黑白漫画
只推荐用于搜索CG
、画集
、图集
、彩色漫画
、彩色封面
等
# Cookies获取
登录您的E-Hentai
(opens new window)或ExHentai
(opens new window)
召唤出您的控制台
(按下F12
)
输入document.cookie
获取到cookies
格式为"igneous=xxx; ipb_member_id=xxx; ipb_pass_hash=xxx; sk=xxx"
这一整串就是需要的cookies
,直接复制使用即可
其中ipb_member_id
与ipb_pass_hash
是必须项
# 数据返回值列表
提示
数据结构也可以查阅源代码
- name: 源代码
desc: 🚀强的人直接看这个
link: https://github.com/kitUIN/PicImageSearch/blob/main/PicImageSearch/model/ehentai.py
bgColor: '#DFEEE7'
textColor: '#2A3344'
1
2
3
4
5
2
3
4
5
情境
以Demo
中的代码为例子
变量 | 内容 | 类型 |
---|---|---|
resp.origin | 原始返回值 | PyQuery |
resp.title | 标题 | str |
resp.url | 地址 | str |
resp.thumbnail | 缩略图 | str |
resp.type | 分类 | str |
resp.date | 日期 | str |
resp.tags | 标签 | List[str] |
上次更新: 2022/05/21, 22:01:46