Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niuhuan/pica-go
Golang版的哔咔漫画API。
https://github.com/niuhuan/pica-go
anime api bika comic golang pica
Last synced: 27 days ago
JSON representation
Golang版的哔咔漫画API。
- Host: GitHub
- URL: https://github.com/niuhuan/pica-go
- Owner: niuhuan
- License: mit
- Created: 2021-07-27T01:25:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-13T01:37:12.000Z (almost 2 years ago)
- Last Synced: 2024-10-08T23:50:08.054Z (about 1 month ago)
- Topics: anime, api, bika, comic, golang, pica
- Language: Go
- Homepage:
- Size: 127 KB
- Stars: 31
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PICA-GO
===========
Golang哔卡漫画API## 实现功能
- [x] 用户
- [x] 登录 / 注册 / 获取用户信息 / 打卡 / 我的评论
- [x] 变更密码 / 变更签名 / 变更头像
- [x] 漫画
- [x] 分类 / 搜索 / 大家都在搜 / 随机本子 / 排行榜 / 推荐
- [x] 收藏 / 喜欢 / 获取EP / 获取图片
- [x] 看这个本子的也在看 / 评论 / 获取评论 / 子评论
- [x] 游戏
- [x] 评论 / 获取评论 / 子评论
- [x] 社交
- [x] 大家都在搜
- [x] 网络
- [x] 分流 / 代理 ([examples](https://github.com/niuhuan/pica-go/blob/master/examples/examples.go))## 使用方法
```text
package mainimport "github.com/niuhuan/pica-go"
func main(){
client := pica.Client{}
err := client.Login(username, password)
comicsPage, err := client.Comics("", "", "", "", pica.SortDefault, 1)
}
```