All checks were successful
Publish package / publish (push) Successful in 2m8s
Tatoeba Parser for Kotlin
A parser for Tatoeba example sentence files written in Kotlin.
Build
To build the project locally, simply run the following command from the terminal:
./gradlew build
Installation
Tatoeba Parser for Kotlin is available from my self-hosted Gitea instance.
First, add the repository to your build.gradle.kts
file:
repositories {
maven {
url = uri("https://gitea.marvinelsen.com/api/packages/marvinelsen/maven")
}
}
Afterwards, add the package dependency to your build.gradle.kts
file:
dependencies {
implementation("com.marvinelsen:tatoeba-parser:1.0.0")
}
Usage
fun main() {
val tatoebaInputStream =
GZIPInputStream(object {}.javaClass.getResourceAsStream("/cmn_sentences.tsv.gz")!!)
tatoebaInputStream.use {
val tatoebaParser = TatoebaParser.instance
val tatoebaSentences = tatoebaParser.parse(tatoebaInputStream)
tatoebaSentences.forEach { sentence ->
println(sentence.simplified)
}
}
}
License
All source code in this repository is licensed under a MIT license, unless otherwise noted.
To the following third-party code, data, and files in the repository different licenses apply:
Tatoeba Example Sentences
Tatoeba example sentences are licensed under a CC BY 2.0 FR.
Languages
Kotlin
100%