tristanlatr

Results 338 comments of tristanlatr

Maybe this issue should be handled at the Twisted level, here: https://github.com/twisted/twisted/blob/f28b36d02f678f4146047777f24548553425702b/src/twisted/web/_template_util.py#L387 By adding the a correct [`resolveEntity`](https://docs.python.org/3/library/xml.sax.handler.html#xml.sax.handler.EntityResolver) method to the `_ToStan` class. Right now there is no `resolveEntity()` method...

@adiroiban, can you create an issue in the Twisted trac to fix this ? Thanks a lot,

@adiroiban can this issue be transferred to twisted repo ?

Yes, I believe this is core of the issue. Thanks for clarifying.

It’s good to propose a standard place, Such that we can say: “the regular installation directory for nettacker is /opt/nettacker”. And a symlink in the path is generally created. Now,...

This could also be done by packaging nettacker with a setup.py.

@dhirensr do you think it would be possible to package nettacker such that we can have an entrypoint in the PATH ? Thanks

Is there a workaround for this issue ? The best practice would be to have a static list of requirements, what's the need of the using pip internals ? We...

@clemfromspace This pip issue is causing major install problems on all softwares using scrapy-selenium as a pip requirement. Can you merge this patch or change setup.py to use static `install_requires`...

> You also can extend SeleniumMiddleware > > ```python > class BotDownloaderMiddleware(SeleniumMiddleware): > def process_request(self, request, spider): > if isinstance(request, SeleniumRequest): > delay = spider.settings.getint('DOWNLOAD_DELAY') > randomize_delay = spider.settings.getbool('RANDOMIZE_DOWNLOAD_DELAY') >...