话不多说直接上代码(前提:电脑安装了Python环境)
import urllib.request
import pickle
res=urllib.request.urlopen('https://www.envision-group.com/cn/index.html#sectiond1d66c95')
htmlBytes=res.read().decode('utf-8')
a=open('a.html','wb')
pickle.dump(htmlBytes,a)
话不多说直接上代码(前提:电脑安装了Python环境)
import urllib.request
import pickle
res=urllib.request.urlopen('https://www.envision-group.com/cn/index.html#sectiond1d66c95')
htmlBytes=res.read().decode('utf-8')
a=open('a.html','wb')
pickle.dump(htmlBytes,a)