[Solved] How can i get text from website and refresh that check every second? [closed]


It’s hard to do for a specific pixel area, but you could get the HTTP response body (e.g. the HTML of the web page you want) by making an HTTP request to the website and reading the response. You can do that with Python’s httplib package. Then parse the response, e.g. using an XML package such as Python’s xml.dom.minidom. Find the XML element containing the text you want in the DOM and then act appropriately.

1

solved How can i get text from website and refresh that check every second? [closed]