It's React, but in Python
Find a file
2023-06-14 23:15:37 -07:00
.github Add contributor license agreement 2023-06-14 19:52:28 -07:00
branding add logo for social card (#945) 2023-03-01 00:44:16 -08:00
docs Warn and fix missing mime types (#1050) 2023-06-14 23:15:37 -07:00
src Warn and fix missing mime types (#1050) 2023-06-14 23:15:37 -07:00
.gitignore Poetry+Hatch Monorepo (#1002) 2023-06-03 14:56:52 -07:00
.pre-commit-config.yaml Added pre-commit hook (#1024) 2023-06-13 11:07:22 -06:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md (#119) 2019-10-06 03:45:51 -07:00
LICENSE Update LICENSE date 2023-06-14 13:08:24 -06:00
pyproject.toml Added pre-commit hook (#1024) 2023-06-13 11:07:22 -06:00
README.md Remove HR from readme (#1013) 2023-06-06 16:46:28 -07:00
requirements.txt rename test-run.txt to nox-deps.txt 2021-12-15 21:44:03 -08:00
tasks.py Fixed FileNotFound error while running hatch run lint-py (#1023) 2023-06-08 10:51:00 -06: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.