Published
- 1 min read
python get website content
The solution for this is noted below
python get website content
Solution
import urllib.request
page = urllib.request.urlopen('http://services.runescape.com/m=hiscore/ranking?table=0&category_type=0&time_filter=0&date=1519066080774&user=zezima')
print(page.read())
Try other methods by searching on the site. That is if this doesn’t work