Is there a way to get the code completion features with the pyscript kernel that you get when you run the ipykernel? For instance the ipykernel gives you detailed documentation and completion for something like math.floor() using (shift + tab). When using the pyscript kernel I'm not able to access that.
Installing Jedi Language Server basically solves the issue. Though shift+tab still doesn't work at least code completion and documentation are available.
Is there a way to get the code completion features with the pyscript kernel that you get when you run the ipykernel? For instance the ipykernel gives you detailed documentation and completion for something like
math.floor()
using (shift + tab). When using the pyscript kernel I'm not able to access that.