Paddy Mullen

Results 99 comments of Paddy Mullen

I would like this feature too. I'm working to understand the RTree algorithm, and when the bounding rectangles are necessary for search vs the object stored. I added the #48...

Ahh. I think https://github.com/mourner/kdbush solves this usecase. @mourner Can you confirm? Thanks for the great work.

I am planning to port my [Buckaroo table widget](https://github.com/paddymul/buckaroo) to streamlit within the next week or so. It has groupby functionality with code gen (works for polars too). Buckaroo combines...

> @paddymul thank you. overall, I like your ideas on improving this documentation. but it feels like considerable effort needs to be put from our end on this enhancement. How...

I am still willing and eager to work on this if the interest from Jupyterlab desktop is there. What is the interest level in 1. Auto configuring download page? 2....

After more investigation I was able to make this work. ``` parent_process = psutil.Process().parent() server_start_time = dtdt.fromtimestamp(parent_process.create_time()) buckaroo_mtime = dtdt.fromtimestamp(os.path.getmtime(__file__)) if buckaroo_mtime > server_start_time: print("""It looks like you installed Buckaroo...

I'm making this PR to tighten up the wording of the user facing messaging about NB7. I'm trying to consider the following user groups 1. Active users of Jupyter. This...

FWIW I was able to get a regular pandas dataframe with the following code: ```python pd_df = pd.DataFrame(dict(zip(df.columns, df.to_numpy().T))) ``` Then I serialize via existing pandas methods. I no longer...

The code of ```python class ButtonElement(reacton.core.Element): def _add_widget_event_listener(self, widget: widgets.Widget, name: str, callback: Callable): if name == "on_click": callback_exception_safe = _event_handler_exception_wrapper(callback) def on_click(change): callback_exception_safe() key = (widget.model_id, name, callback) self._callback_wrappers[key]...

Ok, I got this to work. My own codegen ```python import reacton from buckaroo.buckaroo_widget import BuckarooWidget def reacton_buckaroo(**kwargs): widget_cls = BuckarooWidget comp = reacton.core.ComponentWidget(widget=widget_cls) return reacton.core.Element(comp, kwargs=kwargs) ``` then invoking...