I am working on a web scraping task. I am using beautiful soup and urllib. When I going to run the code I am getting only part of the first part of the website. Non-buffered part is missing in code. Anyone have an idea about how to get a fully buffered website source code. I am trying the code given below.
import bs4 as bs
import urllib.request
source = urllib.request.urlopen('https://play.google.com/store/apps?hl=en').read()
soup = bs.BeautifulSoup(source,'lxml')
Please help if anyone has an idea about it.