Metadata-Version: 2.1
Name: dot_kernel
Version: 0.1.7
Summary: Writing dot language and render in jupyter.
Home-page: https://github.com/laixintao/jupyter-dot-kernel
Author: laixintao
Author-email: laixintao1995@163.com
License: UNKNOWN
Description: # Dot Kernel
        
        The dot kernel for jupyter!
        
        There is an awesome dot language tutorial in Chinese: [learn-dot](https://github.com/laixintao/learn-dot).
        
        ![demo.jpeg](https://github.com/laixintao/jupyter-dot-kernel/raw/master/readme_assets/demo.jpeg)
        
        ## Install
        
        You should have graphviz first. 
        - Install by brew: `brew install graphviz`.
        - or `sudo apt-get inatall graphviz` for ubuntu
        
        Then,
        
        ```
        pip install dot_kernel
        ```
        
        Add kernel to your jupyter:
        
        ```
        install-dot-kernel
        ```
        
        ALL DONE! 🎉🎉🎉
        
        Run using:
        
        ```
        jupyter notebook
        ```
        
        Select new -> dot
        
        ![new_dot.png](https://github.com/laixintao/jupyter-dot-kernel/raw/master/readme_assets/new_dot.png)
        
        and try run this:
        
        ```
         // The graph name and the semicolons are optional
         graph graphname {
             a -- b -- c;
             b -- d;
         }
        ```
        
        You will see:
        
        ![first_try.png](https://github.com/laixintao/jupyter-dot-kernel/raw/master/readme_assets/first_try.png)
        
        ## TODO
        
        1. update [this](https://github.com/jupyter/jupyter/wiki/Jupyter-kernels).
        2. add more render tools not just `dot`
        3. add more filetype support not just `png`
        4. auto indent
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
