Control the web with Python
Project description
ReactPy Django
ReactPy is a library for building user interfaces in Python without Javascript. ReactPy interfaces are made from components that look and behave similar to those found in ReactJS. Designed with simplicity in mind, ReactPy can be used by those without web development experience while also being powerful enough to grow with your ambitions.
Supported Backends | |
---|---|
Built-in | External |
Flask, FastAPI, Sanic, Tornado | Django, Jupyter, Plotly-Dash |
At a Glance
my_app/components.py
You will need a file to define your ReactPy 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 reactpy 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 ReactPy 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 reactpy %}
<!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 ReactPy in a Jupyter Notebook.
- Documentation - learn how to install, run, and use ReactPy.
- Community Forum - ask questions, share ideas, and show off projects.
- Contributor Guide - see how you can help develop this project.
- Code of Conduct - standards for interacting with this community.
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 reactpy_django-3.1.0.tar.gz
.
File metadata
- Download URL: reactpy_django-3.1.0.tar.gz
- Upload date:
- Size: 75.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83ff40f72123da14c89d237e7e545750c629c75915eaf937f5465942edf82a57 |
|
MD5 | f89a637d9930ee10e3cf9e37f0241f17 |
|
BLAKE2b-256 | c63891ce6162b6a739bfe6ce7096cd0d615823259e8f457c150428798e5f340b |
File details
Details for the file reactpy_django-3.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: reactpy_django-3.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 77.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eed5c8f019d55f2ac37daeb6104c1ba8251937c28d4f9751d9f66016953edd17 |
|
MD5 | b88afcc093494f70f2d15806f373f131 |
|
BLAKE2b-256 | 9b73817592a0cb0850cd10e87087b61f028dbcc901773cd4ac8e7057816d52be |