Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CellMetadata ¶
type CellMetadata struct {
Jupyter JupyterMetadata `json:"jupyter,omitempty"`
}
type JupyterMetadata ¶
type Kernelspec ¶
type LanguageInfo ¶
type LanguageInfo struct {
Name string `json:"name"`
CodemirrorMode interface{} `json:"codemirror_mode,omitempty"` // Could be a string or an object
FileExtension string `json:"file_extension,omitempty"`
Mimetype string `json:"mimetype,omitempty"`
PygmentsLexer string `json:"pygments_lexer,omitempty"`
}
type Metadata ¶
type Metadata struct {
Kernelspec Kernelspec `json:"kernelspec"`
LanguageInfo LanguageInfo `json:"language_info"`
OrigNbformat int `json:"orig_nbformat,omitempty"`
Title string `json:"title,omitempty"`
Authors []Author `json:"authors,omitempty"`
}
type Output ¶
type Output struct {
OutputType string `json:"output_type"`
Name string `json:"name,omitempty"`
Text []string `json:"text,omitempty"`
ExceptionName string `json:"ename,omitempty"`
Exceptionvalue string `json:"evalue,omitempty"`
Traceback []string `json:"traceback,omitempty"`
Data map[string]interface{} `json:"data,omitempty"`
Metadata map[string]interface{} `json:"metadata,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.