Metadata-Version: 2.0
Name: ipython-beautifulsoup
Version: 0.3
Summary: Custom rendering of beautifulsoup objects       in IPython notebook and qtconsole
Home-page: https://github.com/Psycojoker/ipython-beautifulsoup
Author: Laurent Peuch
Author-email: cortex@worlddomination.be
License: MIT
Keywords: ipython beautifulsoup parsing scraping
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: IPython
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Text Processing :: Markup :: XML
Classifier: Topic :: Text Processing :: Markup :: SGML
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pygments
Requires-Dist: ipython
Requires-Dist: beautifulsoup4
Provides-Extra: bs4
Requires-Dist: BeautifulSoup4; extra == 'bs4'
Provides-Extra: notebook
Requires-Dist: ipython[notebook]; extra == 'notebook'
Requires-Dist: pyzmq; extra == 'notebook'
Requires-Dist: jinja2; extra == 'notebook'
Requires-Dist: tornado; extra == 'notebook'
Provides-Extra: qtconsole
Requires-Dist: ipython[qtconsole]; extra == 'qtconsole'

IPython-BeautifulSoup
=====================
.. image:: https://travis-ci.org/Psycojoker/ipython-beautifulsoup.svg?branch=master
    :target: https://travis-ci.org/Psycojoker/ipython-beautifulsoup

IPython-BeautifulSoup is an IPython extension for displaying
BeautifulSoup HTML/XML objects as prettified and syntax highlighted HTML
blocks in IPython notebook and qtconsole.

Syntax highlighting is accomplished with
`Pygments <http://pygments.org/>`__.

|teaser|

Install
=======

Simply run:

::

    pip install "ipython-beautifulsoup[bs4]"


Installing IPython Notebook
---------------------------

See the `IPython installation
docs <http://ipython.org/ipython-doc/stable/install/index.html>`__ for
details.

To install IPython notebook or qtconsole as well, append ``notebook``
and/or ``qtconsole`` to the extras specifier after "bs4" separated by a
",", like this:

::

    pip install "ipython-beautifulsoup[bs4,notebook,qtconsole]"

On Ubuntu LTS, if you want to install **IPython notebook**, you'll need
to do this before:

::

    sudo apt-get install python-dev g++

(use ``python3-dev`` if you're using Python 3)

For the **qtconsole** do this (if you do this in a virtualenv) (WARNING:
it's slow):

::

    sudo apt-get install make cmake qt4-qmake libqt4-dev
    pip install pyside

Usage
=====

In IPython notebook or qtconsole, run:

.. code:: python

    %load_ext soup

This will push a series of callables into your current context, as well
as a monkey-patched ``BeautifulSoup`` and ``requests``.

You can now use BeautifulSoup like you would if it was imported from the
corresponding module.

There is great chances that you'll want to configure the output by using
``configure_ipython_beautifulsoup``, for example like this (just after
the ``%load_ext``):

::

    configure_ipython_beautifulsoup(show_html=True, show_css=True, show_js=False)

To see ``configure_ipython_beautifulsoup`` documentation just do (in any
interface of IPython):

::

    configure_ipython_beautifulsoup?

This also loads a shortcut function called ``p`` (for Parse) defined as
follows:

.. code:: python

    def p(url):
        if requests is not None:
            return BeautifulSoup(requests.get(url).contents)
        return BeautifulSoup(urlopen(url).read())

A note on security
==================

    **WARNING**

    By nature of including external HTML, JS, and CSS, this extension is
    inherently unsafe if you choose to render the html by setting
    show\_html to True when calling
    **``configure_ipython_beautifulsoup``**.

    By default, ``<script>``, ``<link>``, and ``<style>`` tags are
    removed but this isn't a 100% guarantee that this is secure if you
    choose to render the html, use at your own risk.

The safest option is to set all options of
``configure_ipython_beautifulsoup`` to ``False`` (the default).

Screenshots
===========

IPython Notebook
----------------

``.find``:

|.find|

``.find_all``:

|.find_all|

Contributors
============

In chronological order:

-  `Astalaseven <https://github.com/Astalaseven>`__ - pull request:
   `#1 <https://github.com/Psycojoker/ipython-beautifulsoup/pull/1>`__
-  `westurner <https://github.com/westurner>`__ - pull request:
   `#3 <https://github.com/Psycojoker/ipython-beautifulsoup/pull/3>`__
-  `MattDMo <https://github.com/MattDMo>`__ - pull request:
   `#5 <https://github.com/Psycojoker/ipython-beautifulsoup/pull/5>`__

Don't hesitate to add yourself.

.. |teaser| image:: teaser.png
.. |.find| image:: 1.png
.. |.find_all| image:: 2.png


Changelog
=========

0.3 (2014-08-26)
----------------

- python 3 compatibility
- classifiers in the setup.py
- and a series of small fixes
- also: wheel!
- mainly the work of Matt Morrison, see https://github.com/Psycojoker/ipython-beautifulsoup/pull/5

0.2 (2014-01-06)
----------------

- security improvement (configure_ipython_beautifulsoup)
- tests!
- mostly the work of westurner, see https://github.com/Psycojoker/ipython-beautifulsoup/pull/3

0.1.1 (2014-01-04)
------------------

- bug fixes

0.1 (2014-01-04)
----------------

- Init


