Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 783 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 783 Bytes

TabroomAPI

Multiplatform API for Tabroom.com

Overview

Tabroom.com is a platform used by the Speech and Debate community to manage tournaments and post results. Since it does not have an official API, this repository scrapes the website to provide an API for developers to use.

Installation

Maven

<dependencies>
    <dependency>
        <groupId>xyz.gmitch215</groupId>
        <artifactId>tabroom-api</artifactId>
        <version>[VERSION]</version>
    </dependency>
</dependencies>

Gradle (Groovy)

dependencies {
    implementation 'xyz.gmitch215:tabroom-api:[VERSION]'
}

Gradle (Kotlin DSL)

dependencies {
    implementation("xyz.gmitch215:tabroom-api:[VERSION]")
}