Skip to main content
Module

x/python/mod.ts>NamedArgument

🐍 Python interpreter bindings for Deno.
Go to Latest
class NamedArgument
import { NamedArgument } from "https://deno.land/x/python@0.4.1/mod.ts";

An argument that can be passed to PyObject calls to indicate that the argument should be passed as a named one.

It is allowed to pass named argument like this along with the named arg in PyObject#call because of the use in proxy objects.

Constructors

new
NamedArgument(name: string, value: PythonConvertible)

Properties

name: string
value: PyObject