
it.skrape.core.Parser.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
skrape{it} is a Kotlin-based HTML testing and web scraping library
that can be used seamlessly in both Spring-Boot and other JVM projects.
It places particular emphasis on ease of use, a high level of readability
and attention to performance through the use of non-blocking operations.
The newest version!
package it.skrape.core
import org.jsoup.Jsoup
internal class Parser(var html: String = "") {
fun parse(): Doc = Jsoup.parse(html)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy