Metadata-Version: 2.1
Name: ipyhtmx
Version: 0.1.0
Summary: Build modern UIs in Jupyter with Python
Home-page: https://github.com/davidbrochart/ipyhtmx
Author: David Brochart
Author-email: david.brochart@gmail.com
License: BSD 3-Clause License
Keywords: ipython,widgets,Jupyter,JupyterLab,JupyterLab3
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Framework :: Jupyter
Classifier: Framework :: Jupyter :: JupyterLab
Classifier: Framework :: Jupyter :: JupyterLab :: 3
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# ipyhtmx

Build modern UIs in Jupyter with Python

## Installation

To install use pip:

    $ pip install ipyhtmx

For a development installation (requires [Node.js](https://nodejs.org) and [Yarn version 1](https://classic.yarnpkg.com/)),

    $ git clone https://github.com/davidbrochart/ipyhtmx.git
    $ cd ipyhtmx
    $ pip install -e .
    $ jupyter nbextension install --py --symlink --overwrite --sys-prefix ipyhtmx
    $ jupyter nbextension enable --py --sys-prefix ipyhtmx

When actively developing your extension for JupyterLab, run the command:

    $ jupyter labextension develop --overwrite ipyhtmx

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.
