I can't get any of the easylists to work at all?
>>> with open('fanboy_social_general_block.txt', 'rb') as f:
... raw_rules = f.read().decode('utf8').splitlines()
>>> rules = AdblockRules(raw_rules)
>>> rules.should_block("http://www.facebook.com")
False
>>> with open('easylist.txt', 'rb') as f:
... raw_rules = f.read().decode('utf8').splitlines()
>>> rules = AdblockRules(raw_rules)
>>> rules.should_block("http://ads.example.com")
False
Any ideas? Are they no longer compatible?
I can't get any of the easylists to work at all?
Any ideas? Are they no longer compatible?