New to web crawling :) I want the list of mobile phones from flipkart. The url I am using is https://www.flipkart.com/mobiles/pr?sid=tyy,4io&otracker=categorytree
The only div i want to pull off is the names of each phone. class of that div is "_3wU53n"
Here is my code which returns an empty list:
import requests
from bs4 import BeautifulSoup
url = "https://www.flipkart.com/mobiles/pr?sid=tyy,4io&otracker=categorytree"
source = requests.get(url)
soup = BeautifulSoup(source.content, "html.parser")
data = soup.findAll('div',{'class':'_3wU53n'})
print data
kindly help.