It's React, but in Python. Now with Django integration.
ReactPy lets you build user interfaces out of individual pieces called components. Create your own ReactPy components like thumbnail
, like_button
, and video
. Then combine them into entire screens, pages, and apps.
Video description
Whether you work on your own or with thousands of other developers, using React feels the same. It is designed to let you seamlessly combine components written by independent people, teams, and organizations.
ReactPy components are Python functions. Want to show some content conditionally? Use an if
statement. Displaying a list? Try using list comprehension. Learning ReactPy is learning programming.
Video description
Video description
Video description
ReactPy components receive data and return what should appear on the screen. You can pass them new data in response to an interaction, like when the user types into an input. ReactPy will then update the screen to match the new data.
You don't have to build your whole page in ReactPy. Add React to your existing HTML page, and render interactive ReactPy components anywhere on it.
ReactPy is a library. It lets you put components together, but it doesn't prescribe how to do routing and data fetching. To build an entire app with ReactPy, we recommend a backend framework like Django.
Get Started