下的几个书法app都把王羲之的兰亭序字帖(单字放大版)设成了VIP可见,在网上随便一搜发现单字图片资源是现成的,于是把图片都扒了下来,几行代码就能搞定,非常简单。
图片资源:http://www.sohu.com/a/295552000_574698
python代码
import urllib
import requests
from lxml import etree
url = 'http://www.sohu.com/a/295552000_574698'
response = requests.get(url)
s = etree.HTML(response.text)
x = s.xpath('//*[@id="mp-editor"]/table/tbody/tr/td/p/img/@src')
for i in range(324):
urllib.request.urlretrieve(x[i], '兰亭集序/'+str(i)+'.jpg')
效果: