Skip to content

Commit

Permalink
WIP add resrouce_info_request
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanov committed Feb 8, 2019
1 parent 84f3f0e commit daa4c85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions jupyter_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,12 @@ def is_complete(self, code):
self.shell_channel.send(msg)
return msg['header']['msg_id']

def resource_info_request(self, expression):
msg = self.session.msg('resource_info_request', {'hi': expression})
self.shell_channel.send(msg)
return msg['header']['msg_id']


def input(self, string):
"""Send a string of raw input to the kernel.
Expand Down

0 comments on commit daa4c85

Please sign in to comment.