Wrapper on multiplatform kotlin for SauceNaoAPI
Go to file
InsanusMokrassar 6b8d06da70 hotfix 2020-08-29 19:12:47 +06:00
gradle/wrapper update gradle 2020-08-29 18:50:36 +06:00
src hotfix 2020-08-29 19:12:47 +06:00
.gitignore init + add header model 2019-02-20 12:06:04 +08:00
CHANGELOG.md large upgrade 2020-08-29 19:09:54 +06:00
LICENSE Initial commit 2019-02-20 11:34:55 +08:00
README.md SauceNaoAnswer#row 2019-10-12 13:00:38 +06:00
build.gradle large upgrade 2020-08-29 19:09:54 +06:00
gradle.properties upgrade up to multiplatform project 2020-08-22 23:00:07 +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
maven.publish.gradle upgrade up to multiplatform project 2020-08-22 23:00:07 +06:00
publication.kpsb update publication info 2020-08-29 11:46:20 +06:00
publish.gradle update publication info 2020-08-29 11:46:20 +06:00
renovate.json Add renovate.json 2020-08-12 20:04:50 +00:00
settings.gradle init + add header model 2019-02-20 12:06:04 +08:00

README.md

SauceNaoAPI

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.

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.