Is this library still maintained ?
# skrape-it
a
Is this library still maintained ?
c
Hey, unfortunately not as much as I would want / currently reduced to the bare minimum due to other commitments (family, work, etc). But that doesn't mean the library is dead. Whenever I find time / obligations relax a bit in the future I want to increase working on skrapeit again. But since I can not say when this will happen it seams to be a good idea to try to find a co-maintainer
a
Okay I see, good to know that you're aware of the situation ! Hope you're doing great in your life 👍 Thanks for the quick reply also !
I'm going to use skrape{it} then 👌
Is there any updated docs also ?
c
Readme in the repo as well as docs page should be up to date
a
Ah, then it's showing as 1.1.x on the header And on the Parsing HTML page it's using
extract
instead of
response
And I noticed some small typos
c
a
Ah, I shouldn't use 1.2.2 ?
c
You can but 1.3.0 has some fixes
BTW the integration test class is a very good up-to-date overview / simple examples of stuff that can be done with the library https://github.com/skrapeit/skrape.it/blob/master/integrationtests%2Fsrc%2Ftest%2Fkotlin%2FDslTest.kt
a
Okay I see, thanks !
I updated to alpha 2 but now I have all my logs duplicated
It seems that the library is also having its own logback configuration, how do I deactivate it ?
c
Hmm not sure, sorry 🤔
a
Okay I managed to stop it by doing this weird thing :
Copy code
val loggerFactory = LoggerFactory.getILoggerFactory() as LoggerContext
loggerFactory.loggerList[0].iteratorForAppenders().forEach {
	if (it.name != "CONSOLE") it.stop()
}
But I think it's related to this file