org.jetbrains.jupyter.parser.notebook.KernelSpec.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jupyter-notebooks-parser Show documentation
Show all versions of jupyter-notebooks-parser Show documentation
Jupyter Notebooks parser and Kotlin utilities for them
package org.jetbrains.jupyter.parser.notebook
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
/**
* Kernel information.
*/
@Serializable
public data class KernelSpec(
/** Name of the kernel specification. */
val name: String,
/** Name to display in UI. */
@SerialName("display_name")
val displayName: String
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy