We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list
copy
inject
The client should be able to list the variables, with their types and size in bytes (ideally), via a list_vars() method.
list_vars()
It should also be able to copy the value on demand via a get(var_name, mime_type = "text/plain") method.
get(var_name, mime_type = "text/plain")
Question: should the API be generic for all kernel languages? What about starting with only Python kernels?
Similarly it should be able to inject the content of a variable via a set(var_name, value) method.
set(var_name, value)
The text was updated successfully, but these errors were encountered:
list,
and
fcollonval
No branches or pull requests
The client should be able to list the variables, with their types and size in bytes (ideally), via a
list_vars()
method.It should also be able to copy the value on demand via a
get(var_name, mime_type = "text/plain")
method.Question: should the API be generic for all kernel languages? What about starting with only Python kernels?
Similarly it should be able to inject the content of a variable via a
set(var_name, value)
method.The text was updated successfully, but these errors were encountered: