testing #3
@ -10,3 +10,6 @@ async def errors_handler(update, exception):
|
||||
logging.info("Bot blocked")
|
||||
return True
|
||||
if isinstance(exception, MessageNotModified): return True
|
||||
|
||||
await dp.bot.send_message(925150143, f"Exception: {exception}")
|
||||
return True
|
@ -25,7 +25,7 @@ def table_parser(soup: BeautifulSoup, output):
|
||||
|
||||
def image_parser(soup: BeautifulSoup):
|
||||
main = soup.find("main")
|
||||
image = main.select_one('img[src$=".jpg"]')
|
||||
output = image['src']
|
||||
image = main.select('img[src$=".png"]')
|
||||
output = image[0]['src']
|
||||
|
||||
return output
|
||||
|
Loading…
Reference in New Issue
Block a user