Skip to content

Commit

Permalink
Fix vet crawler
Browse files Browse the repository at this point in the history
  • Loading branch information
GoGiants1 committed Feb 26, 2024
1 parent aef44f8 commit 2548314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawlers/vet_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async def run_30days(self):

def crawl(self, soup, **kwargs):
soup.div.extract()
trs = soup.select("table > tbody > tr")
trs = soup.select("table > thead > tr")

types = [th.text for th in trs[0].find_all("th")[1:]]

Expand Down

0 comments on commit 2548314

Please sign in to comment.