Metadata-Version: 2.0
Name: cellbell
Version: 0.0.3
Summary: Bell magic for jupyter notebook
Home-page: https://github.com/lepisma/cellbell
Author: Abhinav Tushar
Author-email: abhinav.tushar.vs@gmail.com
License: MIT
Keywords: ipython,magic,bell,notification
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Dist: pyglet

=============================
cellbell
=============================

Bell magic for IPython. Rings a bell when cell evaluation (IPython shell or
Jupyter notebook) is complete.

``pip install cellbell``

Use as cell or line magic::

    # Import
    import cellbell

    # line magic
    %ding my_long_function()

    # cell magic
    %%ding
    time.sleep(4)
    my_long_function()
    time.sleep(2)
    print("done")

Can also be used directly by calling ``ding``::

    # Import
    import cellbell

    cellbell.ding()


Inspired by `ipython-bell <https://github.com/samwhitehall/ipython-bell>`_, but
works on all systems by playing a wav.


