闲来无事,想把朗文字典的所有词条生成图片,然后存在mac的图片文件夹,之后再设置每隔几分钟自动切换,这样不就能每天无意中记单词了么。
说干就干,找来mdx源,之后转为txt,然后渲染成html,之后再利用selenium对20000个单词进行截图,终于生成了朗文20000词条的图片。
文件太大,无力上传~~
仅传1000词条示例,感兴趣的可以自己撸代码哈~
附上有html生成图片的python代码,需要自行安装phantomjs无头浏览器
from selenium import webdriver
import os
driver= webdriver.PhantomJS(executable_path=r'/Users/heminjie/Documents/phantomjs-2.1.1-macosx/bin/phantomjs')
for file in os.listdir('/Users/noneback/test22'):
s=('file:///Users/noneback/test22/'+str(file))
print s
driver.set_page_load_timeout(2)
#等待网页加载
driver.get(s)
#获得网页对象
driver.save_screenshot('/Users/noneback/test22/png1/%s.png' %file)
#截图并保存
driver.close()
https://pan.baidu.com/s/1sldcy65
另赠送
链接: https://pan.baidu.com/s/1dFGaCa1 密码: rcsn