|
|
@ -192,7 +192,7 @@ def AnonMarket_links_parser(soup): |
|
|
|
href = [] |
|
|
|
|
|
|
|
# Using a shorter, but still unique, class name |
|
|
|
listing = soup.find_all('a', href=True, attrs={'href': lambda x: "/product/" in x}) |
|
|
|
listing = soup.find('div', {'class': 'items'}).find_all('a', href=True, attrs={'href': lambda x: "/product/" in x}) |
|
|
|
|
|
|
|
for a in listing: |
|
|
|
link = a.get('href') |
|
|
|