Skip to content

Commit 06f5ba4

Browse files
committed
WIP add resrouce_info_request
1 parent 1d807c2 commit 06f5ba4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

jupyter_client/client.py

+6
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,12 @@ def is_complete(self, code):
410410
self.shell_channel.send(msg)
411411
return msg['header']['msg_id']
412412

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+
413419
def input(self, string):
414420
"""Send a string of raw input to the kernel.
415421

0 commit comments

Comments
 (0)