0
Scraping web error pls help
import bs4 from urllib.request import urlopen as ureq from bs4 import BeautifulSoup as soup my_url = "http://truecaller.com/search/in/+919810954322" uClient= uReq(my_url) page_html=uClient.read() uClient.close() # error in uClient. Pls help me guys
2 Answers
+ 2
Got the answer guys. Instead of fighting with bs4 and urllib, Selenium will help us.
Due to dynamic / java script web values, requests will not work with this.
0
Pls help this