Using Django, how do I generate the value of a field the first time it's accessed? Then storing the value on the field.
In my case it's an image, but it could be anything I suppose. What I need is a function that runs before the field is accessed or wrapping the access and upon checking for nullness I generate it, or something like that.