up vote 7 down vote favorite
5
share [g+] share [fb]

What I want to achieve is to get a website screenshot from any website in python.

Env: Linux

link|improve this question

80% accept rate
1  
Hey EKA, how are you? are you still working in the game scene? – Lucas S. Jul 28 '09 at 22:54
4  
A quick search of the site brings up many, many near-duplicates of this. Here's a good start: stackoverflow.com/questions/713938/… – Shog9 Jul 28 '09 at 22:55
Hey Lucas... not doing any game dev... only for fun, but not now... how are you doing? what are you working on? add me to facebook. check this out: kongregate.com/games/poopgames/retropong did that to learn AS3 long ago :P – Esteban Feldman Jul 28 '09 at 23:21
Shog9: Thanks!! your link has some... will check it. – Esteban Feldman Jul 28 '09 at 23:22
Shog9: why don't you add it as an answer? so it can give you points. – Esteban Feldman Jul 28 '09 at 23:27
show 1 more comment
feedback

3 Answers

up vote 4 down vote accepted

On the Mac, there's webkit2png and on Linux+KDE, you can use khtml2png. I've tried the former and it works quite well, and heard of the latter being put to use.

I recently came across QtWebKit which claims to be cross platform (Qt rolled WebKit into their library, I guess). But I've never tried it, so I can't tell you much more.

The QtWebKit links shows how to access from Python. You should be able to at least use subprocess to do the same with the others.

link|improve this answer
feedback

I can't comment on ars's answer, but I actually got Roland Tapken's code running using QtWebkit and it works quite well.

Just wanted to confirm that what Roland posts on his blog works great on Ubuntu. Our production version ended up not using any of what he wrote but we are using the PyQt/QtWebKit bindings with much success.

link|improve this answer
Cool. I think that's the lib I'll try the next time I need something like this. – ars Jul 29 '09 at 4:48
We ended up putting a RabbitMQ server on top of it and building some code the control the Xvfb servers and the processes running in them to pseudo-thread the screenshots being built. It runs decently fast with an acceptable amount of memory usage. – aezell Jul 29 '09 at 4:52
feedback

You don't mention what environment you're running in, which makes a big difference because there isn't a pure Python web browser that's capable of rendering HTML.

But if you're using a Mac, I've used webkit2png with great success. If not, as others have pointed out there are plenty of options.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.