url = "https://www.wanjunshijie.com/"
res = urllib.request.urlopen(url)
file = open('web/index.html', 'w')
file.write(res.read().decode('utf-8'))
file.close()
url = "https://www.wanjunshijie.com/"
res = urllib.request.urlopen(url)
file = open('web/index.html', 'w')
file.write(res.read().decode('utf-8'))
file.close()