I am trying to get live tick from google finance site using urllib,request but it returns a lot of data but I want to select the only price so how do I select that without using loops **I want that thing from HTML ["INFY","Infosys Ltd","894.70","-0.90","chr"]
import urllib.request
response = urllib.request.urlopen('https://www.google.com/finance?q=NSE:INFY')
html = response.read()