Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
Mihou edited this page Nov 21, 2020 · 1 revision

Amatsuki, is an asynchronous library built for scraping public information (story names, story synopsis, story statistics) from ScribbleHub. The library utilizes Optionals and CompletableFutures, as well as Jsoup. The library is built for all Java versions above or equal to 1.8 (8) which implements Lambdas, as CompletableFutures and Optionals utilize lambdas a lot.

Installation

Installation for the library can be found on Jitpack.

Maven

Step 1. Add the JitPack repository to your build file

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Step 2. Add the dependency

	<dependency>
	    <groupId>com.github.ShindouMihou</groupId>
	    <artifactId>amatsuki</artifactId>
	    <version>Tag</version>
	</dependency>

Gradle

Step 1. Add it in your root build.gradle at the end of repositories:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step 2. Add the dependency:

	dependencies {
	        implementation 'com.github.ShindouMihou:amatsuki:Tag'
	}
Tag refers to version.