|
|
@ -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, |
|
|
|