2019-06-20 22:13:40 +02:00
|
|
|
# VULCAN UONET+ SDK
|
2018-06-27 16:21:09 +02:00
|
|
|
|
2022-12-20 23:33:12 +01:00
|
|
|
[![GitHub Workflow status](https://img.shields.io/github/actions/workflow/status/wulkanowy/sdk/test.yml?branch=master&style=flat-square)](https://github.com/wulkanowy/sdk/actions)
|
2018-07-12 17:24:15 +02:00
|
|
|
[![Codecov branch](https://img.shields.io/codecov/c/github/wulkanowy/sdk/master.svg?style=flat-square)](https://codecov.io/gh/wulkanowy/sdk)
|
2021-05-02 12:10:08 +02:00
|
|
|
[![Maven Central](https://img.shields.io/maven-central/v/io.github.wulkanowy/sdk?style=flat-square)](https://search.maven.org/artifact/io.github.wulkanowy/sdk)
|
2023-05-26 20:47:03 +02:00
|
|
|
[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/io.github.wulkanowy/sdk?server=https%3A%2F%2Fs01.oss.sonatype.org&style=flat-square)](https://s01.oss.sonatype.org/content/repositories/snapshots/io/github/wulkanowy/sdk/)
|
2019-06-20 22:13:40 +02:00
|
|
|
[![JitPack](https://img.shields.io/jitpack/v/wulkanowy/sdk.svg?style=flat-square)](https://jitpack.io/#wulkanowy/sdk)
|
|
|
|
[![License](https://img.shields.io/github/license/wulkanowy/sdk.svg?style=flat-square)](https://github.com/wulkanowy/sdk)
|
|
|
|
[![Discord](https://img.shields.io/discord/390889354199040011.svg?style=flat-square)](https://discord.gg/vccAQBr)
|
2018-07-12 17:24:15 +02:00
|
|
|
|
2019-06-20 22:13:40 +02:00
|
|
|
> Unified way of retrieving data from the UONET+ register through mobile api and scraping api
|
|
|
|
|
|
|
|
## Features
|
|
|
|
|
2019-11-17 00:45:53 +01:00
|
|
|
Check it out [full public api](https://github.com/wulkanowy/sdk/blob/master/sdk/src/main/kotlin/io/github/wulkanowy/sdk/Sdk.kt)
|
|
|
|
and [test examples](https://github.com/wulkanowy/sdk/blob/master/sdk/src/test/kotlin/io/github/wulkanowy/sdk/SdkRemoteTest.kt).
|
2019-06-20 22:13:40 +02:00
|
|
|
|
2019-12-22 17:46:54 +01:00
|
|
|
## Documentation
|
|
|
|
|
|
|
|
Check [wiki page](https://github.com/wulkanowy/sdk/wiki).
|
|
|
|
|
2019-06-20 22:13:40 +02:00
|
|
|
## Download
|
|
|
|
|
|
|
|
```gradle
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-05-01 23:38:26 +02:00
|
|
|
// for stable releases
|
|
|
|
mavenCentral()
|
|
|
|
|
|
|
|
// for snapshots
|
|
|
|
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
|
|
|
|
// for everything
|
2019-06-20 22:13:40 +02:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
2021-05-01 23:38:26 +02:00
|
|
|
implementation 'io.github.wulkanowy:sdk:<version>'
|
2019-06-20 22:13:40 +02:00
|
|
|
}
|
|
|
|
```
|