It's React, but in Python
Find a file
2023-05-28 21:55:11 -07:00
.github Update pull_request_template.md 2023-04-18 18:05:27 -07:00
branding add logo for social card (#945) 2023-03-01 00:44:16 -08:00
docs doc improvements (#984) 2023-05-23 20:07:51 -07:00
requirements use newly released reactpy-flake8 2023-04-29 22:08:36 -06:00
scripts allow independent py/js package releases (#949) 2023-03-13 18:01:14 -07:00
src docstrings for backend hooks (#994) 2023-05-24 21:58:18 -07:00
tests rewrite the client in typescript (#951) 2023-03-23 16:07:30 -07:00
.gitignore rename idom to reactpy (#892) 2023-02-26 12:08:15 -08:00
.pre-commit-config.yaml rewrite the client in typescript (#951) 2023-03-23 16:07:30 -07:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md (#119) 2019-10-06 03:45:51 -07:00
LICENSE update license year 2022-01-30 17:37:43 -08:00
MANIFEST.in rename idom to reactpy (#892) 2023-02-26 12:08:15 -08:00
noxfile.py fix JS dist artifacts (#963) 2023-04-01 21:05:47 -06:00
pyproject.toml use newly released reactpy-flake8 2023-04-29 22:08:36 -06:00
README.md Clean up readme (#1000) 2023-05-28 21:55:11 -07:00
requirements.txt rename test-run.txt to nox-deps.txt 2021-12-15 21:44:03 -08:00
setup.py allow independent py/js package releases (#949) 2023-03-13 18:01:14 -07:00

ReactPy


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

To get a rough idea of how to write apps in ReactPy, take a look at this tiny Hello World application.

from reactpy import component, html, run

@component
def hello_world():
    return html.h1("Hello, World!")

run(hello_world)

Resources

Follow the links below to find out more about this project.