A Reflex library that wraps Plotly for declarative, reactive plotting in Reflex web apps. Current version 0.9.2, requires Python >=3.10. Follows Reflex's component pattern but Plotly-specific footguns (e.g., figure reuse, serialization) are common.
pip install reflex-components-plotlyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a Reflex app with a Plotly scatter plot. Note: use fig.to_dict() not fig directly.
Use fig.to_dict() before passing to Plotly.create().
Always recreate the dict in a state event handler.
Prefer rx.plotly if available, or pin reflex to <0.6.0.
Pass fig.to_dict() instead of fig.
Use: from reflex_components_plotly import Plotly
Serialize to dict with fig.to_dict() before passing to Plotly.create() or storing in state.
No resource links recorded.