Feb-05-2021, 02:53 PM
(This post was last modified: Feb-05-2021, 02:54 PM by firaki12345.)
hi everyone so i am scraping amazon website, but having trouble to turn every absolute link into a list type? what am i doing wrong.. I am only getting one link as there are 16 links on one page.
from requests_html import HTMLSession
import time
import pandas as pd
s = HTMLSession()
r = s.get("https://www.amazon.in/s?k=oneplus&page=1")
r.html.render(sleep=1)
Everything = r.html.find("div.s-include-content-margin.s-border-bottom.s-latency-cf-section")
for e in Everything:
links = e.find("a.a-link-normal.a-text-normal")[0].absolute_links
t = list(links)
print("\n",t)output
