How to use the BeautifulSoup to decode page which is JS ?
buf = requests.get() soup = BeautifulSoup(buf,"html.parser")
when decoding "theglobeandmail.com/investing/markets/stocks/XDV-T", it is working, all the data available in "soup"
when decoding "money.tmx.com/quote/BNS", only some info is available in "soup". When print the "buf" line by line, I noticed it is embedded by JS files.
