# Ghost.py **Repository Path**: pycharming/Ghost.py ## Basic Information - **Project Name**: Ghost.py - **Description**: ghost is a webkit web client written in python - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-03-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ghost.py ======== .. image:: https://drone.io/github.com/jeanphix/Ghost.py/status.png :target: https://drone.io/github.com/jeanphix/Ghost.py/latest ghost.py is a webkit web client written in python: .. code:: python from ghost import Ghost ghost = Ghost() with ghost.start() as session: page, extra_resources = session.open("http://jeanphix.me") assert page.http_status == 200 and 'jeanphix' in page.content Installation ------------ ghost.py requires either PySide_ (preferred) or PyQt_ Qt_ bindings: .. code:: bash pip install pyside pip install ghost.py --pre OSX: .. code:: bash brew install qt mkvirtualenv foo pip install -U pip # make sure pip is current pip install PySide pyside_postinstall.py -install pip install Ghost.py .. _PySide: https://pyside.github.io/ .. _PyQt: http://www.riverbankcomputing.co.uk/software/pyqt/intro .. _Qt: http://qt-project.org/