Solara #22
Replies: 1 comment
-
A Pure Python, React-style Framework for Scaling Your Jupyter and Web Apps Come chat with us on Discord to ask questions or share your thoughts or creations! Introducing SolaraWhile there are many Python web frameworks out there, most are designed for small data apps or use paradigms unproven for larger scale. Code organization, reusability, and state tend to suffer as apps grow in complexity, resulting in either spaghetti code or offloading to a React application. Solara addresses this gap. Using a React-like API, we don't need to worry about scalability. React has already proven its ability to support the world's largest web apps. Solara uses a pure Python implementation of React (Reacton), creating ipywidget-based applications. These apps work both inside the Jupyter Notebook and as standalone web apps with frameworks like FastAPI. This paradigm enables component-based code and incredibly simple state management. By building on top of ipywidgets, we automatically leverage an existing ecosystem of widgets and run on many platforms, including JupyterLab, Jupyter Notebook, Voilà, Google Colab, DataBricks, JetBrains Datalore, and more. We care about developer experience. Solara will give your hot code reloading and type hints for faster development. InstallationRun:
Or follow the Installation instructions for more detailed instructions. First scriptPut the following Python snippet in a file (we suggest import solara
# Declare reactive variables at the top level. Components using these variables
# will be re-executed when their values change.
sentence = solara.reactive("Solara makes our team more productive.")
word_limit = solara.reactive(10)
@solara.component
def Page():
# Calculate word_count within the component to ensure re-execution when reactive variables change.
word_count = len(sentence.value.split())
solara.SliderInt("Word limit", value=word_limit, min=2, max=20)
solara.InputText(label="Your sentence", value=sentence, continuous_update=True)
# Display messages based on the current word count and word limit.
if word_count >= int(word_limit.value):
solara.Error(f"With {word_count} words, you passed the word limit of {word_limit.value}.")
elif word_count >= int(0.8 * word_limit.value):
solara.Warning(f"With {word_count} words, you are close to the word limit of {word_limit.value}.")
else:
solara.Success("Great short writing!")
# The following line is required only when running the code in a Jupyter notebook:
Page() Run from the command line in the same directory where you put your file ( $ solara run sol.py
Solara server is starting at http://localhost:8765 Or copy-paste this to a Jupyter notebook cell and execute it (the See this snippet run live at https://solara.dev/documentation/getting_started DemoThe following demo app can be used to explore a dataset (buildin or upload yourself) using Running in solara-serverThe solara server is build on top of Starlette/FastAPI and runs standalone. Ideal for production use. Running in JupyterBy building on top of ipywidgets, we automatically leverage an existing ecosystem of widgets and run on many platforms, including JupyterLab, Jupyter Notebook, Voilà, Google Colab, DataBricks, JetBrains Datalore, and more. This means our app can also run in Jupyter: ResourcesVisit our main website or jump directly to the introduction Note that the solara.dev website is created using Solara |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Solara bills itself as an Open Source library that lets you use and build data-focused web apps (data apps) using reusable UI components. Your app will work in the Jupyter notebook and production-grade web frameworks (FastAPI, Starlette, Flask, ...).
Solara is built on Reacton, which is itself Class B. Reacton is an excellent building block and Solara is showing great promise.
What is very laudable is that it shows how easy reuse is compared to dash and they continue with showing how their framework improves over streamlit. They are also very clear about why they have improved over Dash as well.
They do not have authentication and authorization out of the box, but they do clearly show how it can be implemented.
Beta Was this translation helpful? Give feedback.
All reactions