ghost.py - headless WebKit in Python
June 18 2012, 3:10 AM
ghost.py is a WebKit web client written in Python:
from ghost import Ghost
ghost = Ghost()
page, extra_resources = ghost.open("http://jeanphi.fr")
assert page.http_status==200 and 'jeanphix' in ghost.content
Via HN.