Fix Oglaf
This commit is contained in:
parent
d794919e73
commit
421e31c961
1 changed files with 11 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
||||||
from re import compile
|
from re import compile
|
||||||
from ..scraper import _BasicScraper
|
from ..scraper import _BasicScraper
|
||||||
from ..helpers import indirectStarter
|
from ..helpers import indirectStarter
|
||||||
from ..util import tagre
|
from ..util import tagre, urlopen
|
||||||
|
|
||||||
|
|
||||||
class OctopusPie(_BasicScraper):
|
class OctopusPie(_BasicScraper):
|
||||||
|
@ -30,9 +30,17 @@ class OddFish(_BasicScraper):
|
||||||
class Oglaf(_BasicScraper):
|
class Oglaf(_BasicScraper):
|
||||||
url = 'http://oglaf.com/'
|
url = 'http://oglaf.com/'
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
imageSearch = compile(tagre("img", "src", r'(/media-haha/comic/[^"]+)', before="strip"))
|
imageSearch = compile(tagre("img", "src", r'(http://media\.oglaf\.com/comic/[^"]+)', before="strip"))
|
||||||
prevSearch = compile(tagre("a", "href", r'([^"]+)') + tagre("div", "id", "pvs"))
|
prevSearch = compile(tagre("a", "href", r'(/[^"]+)') + tagre("div", "id", "pvs?"))
|
||||||
help = 'Index format: stripname/nn'
|
help = 'Index format: stripname/nn'
|
||||||
|
adult = True
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def starter(cls):
|
||||||
|
# click the "I am 18" button
|
||||||
|
data = {"over18": " "}
|
||||||
|
urlopen(cls.url, cls.session, data=data, stream=False, referrer=cls.url)
|
||||||
|
return cls.url
|
||||||
|
|
||||||
|
|
||||||
class OkCancel(_BasicScraper):
|
class OkCancel(_BasicScraper):
|
||||||
|
|
Loading…
Reference in a new issue