Browse Source

fixed parsing vendor rating for ThiefWorld

main
westernmeadow 1 year ago
parent
commit
ff864f0dd3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      MarketPlaces/ThiefWorld/parser.py

+ 1
- 1
MarketPlaces/ThiefWorld/parser.py View File

@ -53,7 +53,7 @@ def thiefWorld_description_parser(soup: BeautifulSoup) -> Tuple:
USD = cleanString(usdText.replace("USD", "").strip())
ratingDiv = soup.find('div', {'class': 'rating_star'})
rating_vendor = ratingDiv.get('title').strip(' ')[1]
rating_vendor = ratingDiv.get('title').split(' ')[1]
# Populating the final variable (this should be a list with all fields scraped)
row = (vendor, rating_vendor, success, name, describe, CVE, MS, category, views, reviews, rating_item, addDate,


Loading…
Cancel
Save