IPython REPL anywhere:如何与 IPython 控制台共享应用程序上下文以供将来交互?

IPython REPL anywhere: how to share application context with IPython console for future interaction?

IPython console 是一款非常强大的开发工具。它用于一般研究,应用程序和算法开发都作为意义捕捉。

有没有办法将 Python 应用程序的当前上下文与 IPython 控制台连接起来?喜欢 import ipyconsole; ipyconsole.set_interactive_from_here().

这里是更完整的情况。

第一流。 下面是某种 运行 python 带有初始化数据库和网络应用程序路由的应用程序。

class App:
    def __init__(self):
        self.db = DB.new_connection("localhost:27018")
        self.var_A = "Just an example variable"
        
    def run(self):
        self.console = IPythonAppConsole(self) #Console Creation
        self.console.initialize()
        self.kernel = console.start()
        # print(self.kernel.connection_file)
        # << "kernel-12345.json"

    # let the app be some kind of web/flask application 
    @app.route('/items/<item_id>')
    def get_item(self, item_id=0):
        ### GOOD PLACE for
        ### <import ipyconsole; ipyconsole.set_interactive_from_here(self.kernel)> CODE
        item = self.db.find_one({'_id': item_id})
        print(item)
          

第二个交互流程。这是一个有价值的目标。

$: ipython console --existing "kernel-12345.json"
<< print(self.db.uri)
>> "localhost:27018"
<< print(item_id)
>> 1234567890

是否有实现这两个流程的常识性方法?也许 pdbipython 内核有某种神奇的组合?


顺便说一句,还有另一种与应用程序通信的交互方式:

  1. 正在调试。使用 pdb/ipdb/web-pdb 调试应用程序,在代码的任何行中使用此类剪接器 import pdb; pdb.set_trace()
  2. 从 python 代码生成 IPython 笔记本片段。任何地方 pyvt.

今天我在IPython/shellapp, kernelapp sources with Jupyter console and dynamic variable sharing through Redis里面寻找答案。感谢您提供任何想法!

实现此目的的一种可能方法是使用 ipdb 和 iPython 组合。

x = 2

ipdb.set_trace()

x = 4

当您 运行 代码时,它会放入一个 ipdb shell

❯ python3 test.py
> /Users/tarunlalwani/Documents/Projects/SO/opa/test.py(7)<module>()
      5 ipdb.set_trace()
      6
----> 7 x = 4
ipdb>

然后你可以从那里进入ipythonshell

ipdb> from IPython import embed
ipdb> embed()
Python 3.9.1 (default, Jan  8 2021, 17:17:43)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.19.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: x
Out[1]: 2

In [2]:

也许 Flask shell 就是您要找的东西 https://flask.palletsprojects.com/en/1.1.x/shell/