Evert Arends
Evert Arends
@TheUltimateCookie Did you manage to find a solution? I'm in the same boat sadly...
No just in general if I run the example code that has been given in the Readme, it won't quit not even after multiple crtl+c'sOn Apr 29, 2022 00:32, Musab...
How would I go about trying that, is it an official release? ```go get -u && go mod tidy``` and a rerun give me the same issues. Should I clone...
I'm using Linux, I try to crawl on http basis (submit url and it gets crawled, should not be more then 1 per sec at max). Right now it's just...
I'm not, here's the options: ``` a := geziyor.NewGeziyor(&geziyor.Options{ RobotsTxtDisabled: true, UserAgent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36", StartRequestsFunc: func(g *geziyor.Geziyor) { req, err := client.NewRequest("GET",...
Thank you for taking the time to talk to me about this issue, this is for a hobby project so I'm not stressing, just rather weird to me that this...
Interesting, thanks. When Rendered = true, it adds html to my json response, which I really *really* do not want. However I'll find a workaround for that. Even when using...
Hah good eye! Hmm, that's not supposed to happen right?
I would love to know too!
If anyone is curious, this is a possible solution: ```GO // this store is not to be used gothic.Store = sessions.NewCookieStore([]byte("")) ``` Initialize an empty store and the warnings stop.