Connect Jupyter Notebook to running Python App

I am creating a Python GUI application using Kivy. Is it possible to connect a jupyter laptop to a running python interpreter to validate objects?

For example, if my application creates some Pandas dataframes, is it possible to work with / manipulate / visualize instances of these objects from a Jupyter Notebook?

+4
source share
1 answer

It was possible to use Kivy in a Jupyter laptop from Kivy version 1.3.0 using InteractiveLauncher(see the documentation ). However, this has been deprecated since version 1.10.0.

0
source

All Articles