|
@ -1,7 +1,7 @@ |
|
|
__author__ = 'DarkWeb' |
|
|
__author__ = 'DarkWeb' |
|
|
|
|
|
|
|
|
# Here, we are importing the auxiliary functions to clean or convert data |
|
|
# Here, we are importing the auxiliary functions to clean or convert data |
|
|
from typing import List |
|
|
|
|
|
|
|
|
from typing import List, Tuple |
|
|
from MarketPlaces.Utilities.utilities import * |
|
|
from MarketPlaces.Utilities.utilities import * |
|
|
|
|
|
|
|
|
# Here, we are importing BeautifulSoup to search through the HTML tree |
|
|
# Here, we are importing BeautifulSoup to search through the HTML tree |
|
@ -89,6 +89,11 @@ def thiefWorld_description_parser(soup: BeautifulSoup) -> Tuple: |
|
|
return row |
|
|
return row |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def thiefWorld_listing_parser(soup: BeautifulSoup): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pass |
|
|
|
|
|
|
|
|
#parses description pages, so takes html pages of description pages using soup object, and parses it for info it needs |
|
|
#parses description pages, so takes html pages of description pages using soup object, and parses it for info it needs |
|
|
#stores info it needs in different lists, these lists are returned after being organized |
|
|
#stores info it needs in different lists, these lists are returned after being organized |
|
|
#@param: soup object looking at html page of description page |
|
|
#@param: soup object looking at html page of description page |
|
|