Control the web with Python
Project description
Django-IDOM ·
Django-IDOM connects your Python project to a ReactJS front-end, allowing you to create interactive websites without needing JavaScript!
Following ReactJS styling, web elements are combined into reusable "components". These components can utilize hooks and events to create infinitely complex web pages.
When needed, IDOM can use components directly from NPM. For additional flexibility, components can also be fully developed in JavaScript.
Any Python web framework with Websockets can support IDOM. See below for what frameworks are supported out of the box.
Supported Frameworks | Supported Frameworks (External) |
---|---|
Flask , FastAPI , Sanic , Tornado |
Django , Plotly-Dash , Jupyter |
At a Glance
my_app/components.py
You will need a file to define your IDOM components. We recommend creating a components.py
file within your chosen Django app to start out. Within this file, we will create a simple hello_world
component.
from idom import component, html
@component
def hello_world(recipient: str):
return html.h1(f"Hello {recipient}!")
my_app/templates/my-template.html
In your Django app's HTML template, you can now embed your IDOM component using the component
template tag. Within this tag, you will need to type in your dotted path to the component function as the first argument.
Additionally, you can pass in args
and kwargs
into your component function. For example, after reading the code below, pay attention to how the function definition for hello_world
(in the previous example) accepts a recipient
argument.
{% load idom %}
<!DOCTYPE html>
<html>
<body>
{% component "example_project.my_app.components.hello_world" recipient="World" %}
</body>
</html>
Resources
Follow the links below to find out more about this project.
- Try it Now - Check out IDOM in a Jupyter Notebook.
- Documentation - Learn how to install, run, and use IDOM.
- Community Forum - Ask questions, share ideas, and show off projects.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_idom-3.0.1.tar.gz
.
File metadata
- Download URL: django_idom-3.0.1.tar.gz
- Upload date:
- Size: 74.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d401405df13ace319a6c8dc4d7092a83feb6b556eb802065611facb62f6aa77c |
|
MD5 | 908c2da2868452ce04f01da513f80236 |
|
BLAKE2b-256 | fc49e30ce46840f7c203ea829b0b7f8476eb347e8a3a8bb0d60efb8085a47aed |
File details
Details for the file django_idom-3.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_idom-3.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 76.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91324a7fac75c7ca582498987173ba52d386edb1db084fd5d2e87dd9480216ab |
|
MD5 | 708910c37199d2a88eb71552a9d1f563 |
|
BLAKE2b-256 | d541c162e53965dfe5660e58570e076a77479c93d47d8d1bcc8d1d095193d9a5 |