I am scraping items from a webpage (there are multiple of these):
You are not iterating through the links list. Try this.
links
links = soup.find_all("a", class_="iusc") for link in links: print(link.get('m'))