e
This commit is contained in:
parent
edbed9cd5f
commit
00000d9da5
7 changed files with 70 additions and 39 deletions
|
|
@ -29,7 +29,7 @@ async def process_event(
|
|||
|
||||
return "", ""
|
||||
|
||||
soup = HTMLParser(r.text)
|
||||
soup = HTMLParser(r.content)
|
||||
|
||||
if category_links := soup.css(".common-list-category .category-item a"):
|
||||
match_name = category_links[-1].text(strip=True)
|
||||
|
|
@ -65,7 +65,7 @@ async def get_events(
|
|||
|
||||
return []
|
||||
|
||||
soup = HTMLParser(r.text)
|
||||
soup = HTMLParser(r.content)
|
||||
|
||||
events = []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue