Stanislau Hluboki
Stanislau Hluboki
This looks like an issue/feature of the lichess study itself, since if you download [PGN of the lichess study](https://lichess.org/study/xLDn6bnD.pgn), it actually does not include chapter names that are shown on...
Hello! If I understand it correctly, you want to dynamically load some proxy lists from the internet to always have the latest proxies. Anyway, what you can do is defining...
@victor-wyk I think replacing the original middleware with the custom one should do the work.
@victor-wyk when you run the spider, do you see the `CustomRotatingProxiesMiddleware` in the list logged after `[scrapy.middleware] INFO: Enabled downloader middlewares:`?
@victor-wyk but what goes wrong then? As in, what's expected and what's actual?
You can get proxies from wherever you want, like this: ```python def get_proxy_list(): # Request your DB here return proxy_list ROTATING_PROXY_LIST = get_proxy_list() ```
I know it's a late reply, but for future readers: the only thing a ban policy does is answering the two following questions: - "Are we banned, judging by the...
@kmike could you please review it?
Hi! Nice PR, thanks a lot! What do you think about using constants as signals instead of strings? The way it's done in Scrapy: ```python # scrapy/signals.py spider_opened = object()...
I think, installing tensorflow package instead of tensorflow-gpu should be enough.