Alex

Results 13 comments of Alex

From my experience - it's convenient to be able to enable splash for entire spider. Maybe if we add support for 'splash' spider argument with splash options - it would...

@pawelmhm if you just set Spider.splash = True it's not clear how to pass splash options per spider

@kmike good point main idea of `meta={'splash': True/False}` was ability to disable splash per request if it was enabled for entire spider. but I looked at #15 now - this...

@pawelmhm please check comment above :) > If developer wants to use default spider config - he doesn't use 'splash' key.

@andrewbaxter the idea behind using `scrapy.cfg` instead of any custom config file was to be able to run scrapyrt in any scrapy project difectory without making any changes - just...

@andrewbaxter oh, I think I missed one more option that doesn't require any changes to ScrapyRT - just override CrawlManager and set any settings you want [here](https://github.com/scrapinghub/scrapyrt/blob/master/scrapyrt/core.py#L129) This method returns...

@andrewbaxter I'm thinking about allowing Scrapy settings with prefix `SCRAPY_` in ScrapyRT settings module. So for instance to change default log level one could add following lines to [scrapyrt_conf.py](https://github.com/scrapinghub/scrapyrt#configuration): ```...

@pawelmhm tests are failing

@kmike nope, have no idea why.

> Known issue looks different to me - `ctypes.util.find_library` finds the library in my case, is fails [afterwards](https://bitbucket.org/cffi/cffi/src/457833686a4ff2a5df0350a8cd528c33148d0a46/cffi/api.py?at=release-1.9&fileviewer=file-view-default#api.py-764). but thanks for the reference.