class pixeltable.ConfigVar
A reference to a database variable or secret, declared at module scope. A declaration names the variable; the target it is applied to supplies the value. Declare a variable and apply it to a column:Code that runs on the target reads the bound value withMEDIA_DEST = pxt.ConfigVar(‘media_dest’, pxt.URI) … … … class Videos(TableModel, name=‘videos’): … clip = pxt.Column(value=…, destination=MEDIA_DEST)
value().
method value()
Signature