My library, Buckaroo, registers itself as the default displayer for pandas and polars dataframes. I was confused as to why this wasn't working. I ended up removing import solara, and auto display worked again.
I have received feedback from users that buckaroo auto-displaying dataframes is confusing and surprising. It is also the point of buckaroo. as a compromise, I added this print statement when buckaroo.enable() is called
print("Buckaroo has been enabled as the default DataFrame viewer. To return to default dataframe visualization use `from buckaroo import disable; disable()`")
maybe Solara could add a similar print statement so users aren't surprised.
My library, Buckaroo, registers itself as the default displayer for pandas and polars dataframes. I was confused as to why this wasn't working. I ended up removing
import solara
, and auto display worked again.I have received feedback from users that buckaroo auto-displaying dataframes is confusing and surprising. It is also the point of buckaroo. as a compromise, I added this print statement when
buckaroo.enable()
is calledmaybe Solara could add a similar print statement so users aren't surprised.