Metadata-Version: 1.1
Name: cellbell
Version: 0.0.2
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
Description: =============================
        cellbell
        =============================
        
        Bell magic for IPython. Rings a bell when cell evaluation (IPython shell or 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")
        
        
        Inspired by `ipython-bell <https://github.com/samwhitehall/ipython-bell>`_, but works on all systems by playing a wav.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
