1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 13:02:38 +00:00

Merge branch 'dev'

This commit is contained in:
Myned 2017-10-15 15:32:43 -04:00
commit 7febc13ef1

View file

@ -1,3 +1,5 @@
import re
from bs4 import BeautifulSoup
from lxml import html
@ -10,10 +12,13 @@ async def check_match(url):
try:
value = BeautifulSoup(content, 'html.parser').find_all('a')[1].get('href')
if value != '#':
return value
else:
raise IndexError
except IndexError:
raise exc.MatchError(url)
try:
raise exc.MatchError(re.search('\/([^\/]+)$', url).group(1))
if value != '#':
return value
else:
raise exc.MatchError(url)
except AttributeError:
raise exc.MissingArgument