jorgerpo / idom

Serve up interactive user interfaces with Python

Home Page:https://idom.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IDOM

Build Status Version Info License: MIT

Libraries for creating and controlling interactive web pages with Python 3.6 and above.

IDOM is still young. If you have ideas or find a bug, be sure to post an issue or create a pull request. Thanks in advance!

Click the badge above to get started! It will take you to a Jupyter Notebooks hosted by Binder with some great examples.

Or Install it Now

pip install idom

At a Glance

IDOM can be used to create a simple slideshow which changes whenever a user clicks an image.

import idom

@idom.element
async def Slideshow(self, index=0):

    async def next_image(event):
        self.update(index + 1)

    url = f"https://picsum.photos/800/300?image={index}"
    return idom.html.img({"src": url, "onClick": next_image})

server = idom.server.sanic.PerClientState(Slideshow)
server.daemon("localhost", 8765).join()

Running this will serve our slideshow to "https://localhost:8765/client/index.html"

You could even display the same thing in a Jupyter notebook!

idom.display("jupyter", "https://localhost:8765/stream")

Every click will then cause the image to change (it won't here of course).

About

Serve up interactive user interfaces with Python

https://idom.readthedocs.io

License:MIT License


Languages

Language:Python 84.9%Language:JavaScript 12.4%Language:HTML 0.8%Language:Shell 0.7%Language:Batchfile 0.6%Language:Makefile 0.5%Language:CSS 0.0%