Wrapper on multiplatform kotlin for SauceNaoAPI
Go to file
InsanusMokrassar 036deeb318
Update README.md
2021-08-31 11:46:59 +06:00
.github/workflows fixes of publish scripts 2021-05-26 22:36:00 +06:00
gradle/wrapper update gradle wrapper 2021-05-26 21:42:51 +06:00
src fix deprecations 2021-05-26 22:16:08 +06:00
.gitignore init + add header model 2019-02-20 12:06:04 +08:00
CHANGELOG.md update klock 2021-05-26 22:02:16 +06:00
LICENSE Initial commit 2019-02-20 11:34:55 +08:00
README.md Update README.md 2021-08-31 11:46:59 +06:00
build.gradle update package 2020-12-02 14:32:26 +06:00
changelog_parser.sh add changelog parser 2020-10-08 15:16:41 +06:00
github_release.gradle update github release file 2020-10-08 17:07:37 +06:00
gradle.properties update klock 2021-05-26 22:02:16 +06:00
gradlew init + add header model 2019-02-20 12:06:04 +08:00
gradlew.bat init + add header model 2019-02-20 12:06:04 +08:00
publish.gradle update publish scripts 2021-05-26 22:10:53 +06:00
publish.kpsb update publish scripts 2021-05-26 22:10:53 +06:00
renovate.json Add renovate.json 2020-08-12 20:04:50 +00:00
settings.gradle upmigration 2020-12-02 14:39:54 +06:00

README.md

SauceNaoAPI

Maven Central

It is wrapper for SauceNAO API. For now, library is in preview state. It can be fully used, but some of info can be unavailable from wrapper classes, but now you can access them via SauceNaoAnswer#row field.

Including

Gradle

implementation "dev.inmo:saucenaoapi:$saucenaoapi_version"

Requester

For the requests we are using SauceNaoAPI object. Unfortunately, for now it supports only url strings as source of request. For example:

val key = // here must be your Sauce NAO API key
val requestUrl = // here must be your link to some image

val api = SauceNaoAPI(key)
api.use {
    println(
        it.request(requestUrl)
    )
}

Most of others requests use the same etymology and meaning as in the SauceNAO API docs.