solara icon indicating copy to clipboard operation
solara copied to clipboard

A Pure Python, React-style Framework for Scaling Your Jupyter and Web Apps

Results 101 solara issues
Sort by recently updated
recently updated
newest added

Responsive support in solara/component/echarts.py and solara/component/echarts.vue GIF of the actual resiseable grid layout in action can be found in following issue. #268

The behavior to set Secure=True when serving from localhost would cause failure to set cookie on Safari (tested on 17.0) and thus cause it hang on loading animation. This could...

TODO: - [ ] test - [ ] document The motivation for this was a discord question about using ydata-profiling (formerly known as pandas-profiling): ```python import pandas as pd from...

Fixes https://github.com/widgetti/solara/issues/127 TODO: * [x] hook support for clear_output should also go upstream to ipykernel * [ ] tests * [ ] make sure the whole API surface is covered...

If you have a dataclass like: ```python @dataclasses.dataclass(frozen=True) class Bears: type: str count: int = dataclasses.field() ``` And you transform it to: ```python @dataclasses.dataclass(frozen=True) class Bears: count: Field[int] type: Field[str]...

enhancement
good first issue
help wanted

Allows to use query parameters to manage state.