We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d807c2 commit 06f5ba4Copy full SHA for 06f5ba4
jupyter_client/client.py
@@ -410,6 +410,12 @@ def is_complete(self, code):
410
self.shell_channel.send(msg)
411
return msg['header']['msg_id']
412
413
+ def resource_info_request(self, expression):
414
+ msg = self.session.msg('resource_info_request', {'hi': expression})
415
+ self.shell_channel.send(msg)
416
+ return msg['header']['msg_id']
417
+
418
419
def input(self, string):
420
"""Send a string of raw input to the kernel.
421
0 commit comments