WynnWrapper is a lightweight, object-oriented Java library that simplifies interaction with the Wynncraft Public API (WAPI). Instead of manually handling HTTP requests and JSON parsing, this wrapper provides clean Java access to all Wynncraft API endpoints.
| Name | Supported |
|---|---|
| Ablity & Aspects | ✅ |
| Classes | ✅ |
| Guild | ✅ |
| Items | ✅ |
| Leaderboard | ✅ |
| Map | ✅ |
| News | ✅ |
| Player | (except WhoAmI) ✅ |
| Search | ✅ |
Link to the WAPI Documentation: https://docs.wynncraft.com
Our Wrapper classes are build around the described responses of the api modules. Our own documentation is WIP.
Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>Gradle:
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}Maven:
<dependency>
<groupId>com.github.wynnwrapper</groupId>
<artifactId>WynnWrapper</artifactId>
<version>1.0.1</version>
</dependency>Gradle:
dependencies {
implementation 'com.github.wynnwrapper:WynnWrapper:1.0.1'
}We are appreciative for all contributions that make WynnWrapper better. Please activate the formatter to "Default IDE" for code changes in Intellij and avoid including unnecessary spaces or line breaks in merge requests. Please always test the changes beforehand and write unit tests if necessary. Thank you for your help!
WynnWrapper is licensed under the MIT license (Link to MIT License).