Metadata-Version: 2.1
Name: ailab-lite
Version: 0.1.3
Summary: Jupyter Notebook extension GUI node editor
Home-page: https://github.com/fathoms-io/ailab-lite
Author: Michal Zagalski
Author-email: michal.zagalski@logicai.io
License: UNKNOWN
Description: ailab-lite
        ===============================
        
        Jupyter Notebook extension GUI node editor
        
        Installation
        ------------
        
        To install use pip:
        
            $ pip install ailab_lite
        
        For a development installation (requires [Node.js](https://nodejs.org) and [Yarn version 1](https://classic.yarnpkg.com/)),
        
            $ git clone https://github.com/fathoms-io/ailab-lite.git
            $ cd ailab-lite
            $ pip install -e .
            $ jupyter nbextension install --py --symlink --overwrite --sys-prefix ailab_lite
            $ jupyter nbextension enable --py --sys-prefix ailab_lite
        
        When actively developing your extension for JupyterLab, run the command:
        
            $ jupyter labextension develop --overwrite ailab_lite
        
        Then you need to rebuild the JS when you make a code change:
        
            $ cd js
            $ yarn run build
        
        You then need to refresh the JupyterLab page when your javascript changes.
        
        ### Usage:
        
        #### Notebook:
        Import node editor widget:
        ```python
        from ailab_lite import NodeEditorWidget
        ```
        
        Import pandas:
        ```python
        import pandas as pd
        ```
        
        Decalare dataset:
        ```python
        example = pd.read_csv("example.csv")
        ```
        
        Run widget:
        ```python
        NodeEditorWidget(env=globals())
        ```
Keywords: ipython,jupyter,widgets
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Multimedia :: Graphics
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
