Data
We've briefly touched upon the fact that Context
and Instance
objects can store and retrieve data
.
Data is a regular Python dictionary stored in the Context
and is meant for sharing information amongst plug-ins, whereas data in an Instance
is specific to the instance. In both cases, data uses mixedCase
by convention, whereas standard Python variables use snake_case
.
Last updated