Metadata-Version: 2.0
Name: idisplay
Version: 0.1.2
Summary: IPython rich display magic functions
Home-page: https://github.com/lebedov/idisplay/
Author: Lev Givon
Author-email: lev@columbia.edu
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Requires-Dist: ipython (>=1.0)

Package Description
-------------------
IDisplay is an IPython extension that provides magic functions
for accessing IPython's rich display system in the Notebook.

.. image:: https://img.shields.io/pypi/v/idisplay.svg
    :target: https://pypi.python.org/pypi/idisplay
    :alt: Latest Version
.. image:: https://img.shields.io/pypi/dm/idisplay.svg
    :target: https://pypi.python.org/pypi/idisplay
    :alt: Downloads

Installation
------------
The package may be installed as follows: ::

    pip install idisplay

After installation, the extension may be loaded within an IPython session
with ::

    %load_ext idisplay

Usage Examples
--------------
Display an image: ::

    %display -i myimage.png

Display a LaTeX math expression: ::

    %display -m '\Delta x + y^3'

Render some HTML: ::

    %display -y -h """
    <ul>
    <li>This</li>
    <li>is</li>
    <li>a list.</li>
    </ul>
    """

Development
-----------
The latest release of the package may be obtained from
`Github <https://github.com/lebedov/idisplay>`_.

Author
------
See the included `AUTHORS.rst
<https://github.com/lebedov/idisplay/blob/master/AUTHORS.rst>`_ file for more
information.

License
-------
This software is licensed under the `BSD License
<http://www.opensource.org/licenses/bsd-license.php>`_.  See the included
`LICENSE.rst <https://github.com/lebedov/idisplay/blob/master/LICENSE.rst>`_
file for more information.


