how to slice bytes object when i try to slice it give me int number?

93 Views Asked by At

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()
1

There are 1 best solutions below

5
On

Regarding the issue expressed in your title, response.read() will give you a bytes object. Convert it to a string to manipulate it more conveniently:

html = str(response.read(), encoding="utf8")

The encoding optional argument indicates the encoding of the text represented by the bytes object - most likely UTF-8.