mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix whitespace
This commit is contained in:
parent
17ab15dabe
commit
4150cf5a51
@ -93,14 +93,14 @@ class ChitankaStore(BasicStoreConfig, StorePlugin):
|
|||||||
author_url = ''.join(data.xpath('.//a[contains(@href,"/person/")]/@href'))
|
author_url = ''.join(data.xpath('.//a[contains(@href,"/person/")]/@href'))
|
||||||
if counter <= 0:
|
if counter <= 0:
|
||||||
break
|
break
|
||||||
print (author_url,)
|
|
||||||
br2 = browser()
|
br2 = browser()
|
||||||
with closing(br2.open(base_url + author_url, timeout=timeout)) as f:
|
with closing(br2.open(base_url + author_url, timeout=timeout)) as f:
|
||||||
if counter <= 0:
|
if counter <= 0:
|
||||||
break
|
break
|
||||||
f = unicode(f.read(), 'utf-8')
|
f = unicode(f.read(), 'utf-8')
|
||||||
doc2 = html.fromstring(f)
|
doc2 = html.fromstring(f)
|
||||||
|
|
||||||
# search for book title
|
# search for book title
|
||||||
for data in doc2.xpath('//ul[@class="superlist booklist"]/li'):
|
for data in doc2.xpath('//ul[@class="superlist booklist"]/li'):
|
||||||
if counter <= 0:
|
if counter <= 0:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user