package jupyter

  1. Overview
  2. Docs

Contents on STDIN channel

Inputs

type input_request = {
  1. stdin_prompt : string;
  2. stdin_password : bool;
}
val input_request_to_yojson : input_request -> Yojson.Safe.t
type input_reply = {
  1. stdin_value : string;
}
val input_reply_to_yojson : input_reply -> Yojson.Safe.t

Request

type reply =
  1. | STDIN_INPUT_REQ of input_request
val reply_to_yojson : reply -> Yojson.Safe.t

Reply

type request =
  1. | STDIN_INPUT_REP of input_reply
val request_to_yojson : request -> Yojson.Safe.t