1. ホーム
  2. python

[解決済み] 現在のIPython / Jupyter Notebookの名前を取得する方法

2023-02-06 11:48:55

質問

IPythonのノートブック実行時に、現在のノートブック名を取得しようとしています。私はそれがノートブックの上部に見ることができることを知っています。私は次のようなものを求めています。

currentNotebook = IPython.foo.bar.notebookname()

名前を変数で取得したい。

どのように解決するのですか?

すでに述べたように、あなたはおそらく本当にこれを行うことができるはずではありませんが、私は方法を見つけることができました。 しかし、私はこの方法を見つけたのです。

import json
import os
import urllib2
import IPython
from IPython.lib import kernel
connection_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.x
if 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']
            break
else:
    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 で "works" する解決策を含むように私の答えを更新しました。 同じカーネルに接続された複数のノートブックがある場合、それはおそらく正しい答えを与えることを保証するものではありません、など。