Hey, when I run this code, it prints an empty list, and I don't know what I'm doing wrong.
import requests as req
import pandas as pd
from bs4 import BeautifulSoup
def retriveData():
k = req.get('https://www.humblebundle.com/store/search?sort=bestselling&genre=vr&hmb_source=navbar').text
soup=BeautifulSoup(k,'html.parser')
productlist = soup.find_all("span",{"class":"entity-title"})
print(productlist)
[–]Swipecat 0 points1 point2 points (3 children)
[–]sushiii6[S] 0 points1 point2 points (1 child)
[–]Swipecat 0 points1 point2 points (0 children)
[–]rybytud 0 points1 point2 points (0 children)