Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cssxsh/pixiv-client
https://github.com/cssxsh/pixiv-client
kotlin pixiv
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cssxsh/pixiv-client
- Owner: cssxsh
- License: agpl-3.0
- Created: 2020-08-24T23:17:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-04T20:47:22.000Z (over 1 year ago)
- Last Synced: 2024-10-04T13:33:07.711Z (4 months ago)
- Topics: kotlin, pixiv
- Language: Kotlin
- Homepage:
- Size: 673 KB
- Stars: 19
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# PixivClient
A pixiv API library based on Kotlin JVM.
Use ktor client as HttpClient.
Currently, only the JVM has been improved and tested.
This client is based on the api of pixiv mobile app.
Consider adding WebApi support in the future.
[![pixiv-client](https://img.shields.io/maven-central/v/xyz.cssxsh.pixiv/pixiv-client)](https://search.maven.org/artifact/xyz.cssxsh.pixiv/pixiv-client)
[![Tool Test](https://github.com/cssxsh/pixiv-client/actions/workflows/Tool.yml/badge.svg)](https://github.com/cssxsh/pixiv-client/actions/workflows/Tool.yml)
[![Api Test](https://github.com/cssxsh/pixiv-client/actions/workflows/Api.yml/badge.svg)](https://github.com/cssxsh/pixiv-client/actions/workflows/Api.yml)## Gradle
```kotlin
repositories {
mavenCentral()
}dependencies {
implementation("xyz.cssxsh.pixiv:pixiv-client:${version}")
}
```