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()
Regarding the issue expressed in your title,
response.read()
will give you abytes
object. Convert it to a string to manipulate it more conveniently:The
encoding
optional argument indicates the encoding of the text represented by thebytes
object - most likely UTF-8.