|
@ -42,7 +42,12 @@ class Base(TorrentProvider): |
|
|
html = BeautifulSoup(data, 'html.parser') |
|
|
html = BeautifulSoup(data, 'html.parser') |
|
|
|
|
|
|
|
|
try: |
|
|
try: |
|
|
result_table = html.find('table', attrs = {'width': '750', 'class': ''}) |
|
|
result_tables = html.find_all('table', attrs = {'width': '750', 'class': ''}) |
|
|
|
|
|
if result_tables is None: |
|
|
|
|
|
return |
|
|
|
|
|
|
|
|
|
|
|
result_table = result_tables[1] |
|
|
|
|
|
|
|
|
if result_table is None: |
|
|
if result_table is None: |
|
|
return |
|
|
return |
|
|
|
|
|
|
|
|