寻找纯Python包来创建网站图像
我之前使用过 http://code.google.com/p/wkhtmltopdf/ http://pypi.python.org/pypi/wkhtmltopdf/0.2 创建以下屏幕截图从命令行访问网站。然而,我想知道是否存在一个纯 python 包,可以做同样的事情。目前我总是需要下载 http://code.google.com/p/wkhtmltopdf/ 的正确二进制文件 如果我换电脑。一个纯 python 包可以让我摆脱这个困境。有什么想法吗?
I've previously used http://code.google.com/p/wkhtmltopdf/ with http://pypi.python.org/pypi/wkhtmltopdf/0.2 to create screenshots of websites from the command line. However, I was wondering whether a pure python package exists, that can do the same. Currently I always need to download the correct binary of http://code.google.com/p/wkhtmltopdf/ if I switch computers. A pure python package would relieve me from this. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这需要一个用纯 python 编写的浏览器引擎。这意味着您需要一个 CSS 处理器,更重要的是,一个用 Python 编写的完整 Javascript 引擎。虽然这无疑是可能的,但我很确定没有人做到过。
That would require a browser engine written in pure python. And this means you need a CSS processor und, more important, a complete Javascript engine written in Python. While this is undoubtedly possible, I'm pretty sure nobody has done it.