I am new to skrape{it} (and rather new to Kotlin).
The well-explained Scraping example only worked after replacing these lines
val extracted = skrape { // 1️⃣
url = "https://github.com/skrapeit"
with
val extracted = skrape(HttpFetcher) { // 1️⃣
request {
url = "https://github.com/skrapeit"
}
Perhaps other modifications or further explanation are needed.
I am new to skrape{it} (and rather new to Kotlin).
The well-explained Scraping example only worked after replacing these lines
with
Perhaps other modifications or further explanation are needed.