Webtoons: Set ageGatePass cookie
This is only done via JavaScript, but seems to be required in some regions to use the site.
This commit is contained in:
parent
585cc7dc90
commit
932f5ba57b
1 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,8 @@ class WebToons(_ParserScraper):
|
|||
self.firstStripUrl = self.stripUrl % '1'
|
||||
|
||||
def starter(self):
|
||||
# Set age-check cookie
|
||||
self.session.cookies.set('ageGatePass', 'true', domain='webtoons.com')
|
||||
# Find current episode number
|
||||
listPage = self.getPage(self.listUrl)
|
||||
currentEpisode = listPage.xpath('//div[@class="detail_lst"]/ul/li')[0].attrib['data-episode-no']
|
||||
|
|
Loading…
Reference in a new issue