如何获取当前的IPythonJupyter Notebook名称

如何获取当前的IPythonJupyter Notebook名称,第1张

如何获取当前的IPython / Jupyter Notebook名称

如前所述,您可能真的不应该能够执行此 *** 作,但是我确实找到了一种方法。尽管这是一个令人发指骇客,所以请不要完全依赖于此:

import jsonimport osimport urllib2import IPythonfrom IPython.lib import kernelconnection_file_path = kernel.get_connection_file()connection_file = os.path.basename(connection_file_path)kernel_id = connection_file.split('-', 1)[1].split('.')[0]# Updated answer with semi-solutions for both IPython 2.x and IPython < 2.xif IPython.version_info[0] < 2:    ## Not sure if it's even possible to get the port for the    ## notebook app; so just using the default...    notebooks = json.load(urllib2.urlopen('http://127.0.0.1:8888/notebooks'))    for nb in notebooks:        if nb['kernel_id'] == kernel_id: print nb['name'] breakelse:    sessions = json.load(urllib2.urlopen('http://127.0.0.1:8888/api/sessions'))    for sess in sessions:        if sess['kernel']['id'] == kernel_id: print sess['notebook']['name'] break

我更新了答案,以包含至少在一个简单的测试中即可在IPython 2.0中“运行”的解决方案。如果有多个笔记本连接到同一内核等,则可能无法保证给出正确的答案。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5664037.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存