The 'execute_reply' contents for an 'ok' status.

See Messaging in Jupyter.

interface IExecuteReply {
    execution_count: ExecutionCount;
    payload?: JSONObject[];
    status: "ok";
    user_expressions: JSONObject;
}

Hierarchy

  • IExecuteReplyBase
    • IExecuteReply

Properties

execution_count: ExecutionCount
payload?: JSONObject[]

A list of payload objects. Payloads are considered deprecated. The only requirement of each payload object is that it have a 'source' key, which is a string classifying the payload (e.g. 'page').

status: "ok"
user_expressions: JSONObject

Results for the user_expressions.