我想通过我的python脚本上网获取天气并将其打印到我的控制台上。我目前正在使用Urllib
import urllib.request
responce = urllib.request.urlopen('http://www.weatherzone.com.au/nsw/central-tablelands/orange')
html = responce.read(35000)
print(html)
由于我想要打印的只有4个字节,所以不必要地下载其他29996个。这4个字节通常在35000到35500之间,class="tempnow"
总是在它之前。
有没有办法只打印这4个字节,甚至更好的方法来获取这个数字?
由于