Vincent Smith
Vincent Smith
It would be nice to add the :file key to face.recognize, I've done this on my local machine and it works. I don't know how Github really works, but I...
@jimsmart what exactly are you get/putting in the cache? My imagination is having a hard time going beyond image and css files which aren't downloaded through Colly in any case....
@jonathaningram I think the interface used in `go-cloud/blob` looks like a good model to follow! Having it as a hard dependency would bloat this project, but I think emulating their...
Hi @Zaba505 are you looking to use context.Context in order to Cancel() them in the case that a channel closes? If you are just holding key-value data, you can capture...
I also think this is a good idea to make some kind of plugin system. Perhaps converting the `http_backend` into some sort of interface. As for Headless Chrome vs Gecko...
@LeMoussel looks like a good solution that supports multiple browsers. @asciimoo , should this issue be re-opened?
@asciimoo , @manugarri , @LeMoussel . I've opened PR #148 in an attempt to created an HTTPDriver interface to open up to possibility of using external browsers. When you get...
@alejoloaiza the first implementation of the HTTPDriver interface is in design right now. We literally just started the PR yesterday so it hasn't been merged into master yet. You can...
@sp3c1 I have done some playing around in a branch at `vosmith/colly:http_backend`. That branch has some architectural changes that opens the `http_backend` up as an interface. I also have a...
The `http.Client` doesn't support this either, unfortunately. The best way I can think to do this is to add a custom `collector.RedirectHandler`, that returns `http.ErrUseLastResponse`. Also have an `OnResponse` callback...