David Brochart
David Brochart
That's a good point, currently ipywidgets won't work with this, but there are discussions about using y-py in ipywidgets, which would be very aligned with this REST API in my...
I think it has been discussed in some meetings, but it's probably not going to happen anytime soon. Regardless of ipywidgets, this kernels REST API could make it easier for...
I opened [an issue in ipywidgets](https://github.com/jupyter-widgets/ipywidgets/issues/3516).
Thanks for opening this issue @mlucool. Indeed it would be interesting to see how jupyverse compares to jupyter-server in terms of performances. Even for tracking the performances of one of...
Quetz has an [authorization registry](https://github.com/mamba-org/quetz/blob/master/quetz/authentication/registry.py), which could be a solution.
A solution has been implemented in #211.
Some of the changes in a0cabe22c84ea95018f082c883c8ca79a81bbb95 and fd93a165abbc6ccdb8e481b1dd64d2a897c404ee have been merged in #124.
@hbcarlos I think this PR was superseded by #206. If not, feel free to re-open.
[asgi-webdav](https://github.com/rexzhang/asgi-webdav) currently requires Python >=3.10. I've been able to [install bonsai](https://github.com/jupyter-server/jupyverse/runs/7335171769?check_suite_focus=true) in a conda environment with `mamba install openldap`, but `asgi-webdav` will probably [drop this dependency](https://github.com/rexzhang/asgi-webdav/issues/22#issuecomment-1183214833) anyway.
An example using the [EasyWebDAV](https://github.com/amnong/easywebdav) client: ```py import easywebdav webdav = easywebdav.connect('127.0.0.1', port=8000, path="webdav", username='foo', password='bar') webdav.mkdir('some_dir') ```