Package

polynote.runtime

python

Permalink

package python

Visibility
  1. Public
  2. All

Type Members

  1. class PythonFunction extends TypedPythonObject[function] with Dynamic

    Permalink

    Some Scala sugar around PyCallable

  2. class PythonObject extends Dynamic

    Permalink

    Just a bit of Scala sugar over PyObject

  3. class TypedPythonObject[TN <: String] extends PythonObject

    Permalink

    A PythonObject which is refined by a constant literal string type indicating its type name.

    A PythonObject which is refined by a constant literal string type indicating its type name. Python objects will be assigned a type like this (i.e. TypedPythonObject["DataFrame"]) so that we can use its python type to find specific reprs for that type. For example, we could make an instance of type:

    ReprsOf[ TypedPythonObject[LiteralStr.DataFrame.T] ]

    which would be selected for a PythonObject["DataFrame"]. Then, this instance could (for example) return a similar streaming data representation to what the Scala DataFrame instance does, enabling the built-in data viz.

Value Members

  1. object PythonFunction

    Permalink
  2. object PythonObject

    Permalink
  3. object TypedPythonObject extends PandasReprs

    Permalink
  4. package pandas

    Permalink

Ungrouped