I've found for many of my Tarbell projects that I want to manipulate the context after it's been retrieved from the Google sheet.
Right now, we handle this using custom filters in the Blueprint, but this adds more cruft and {% set %} in the templates than I'd like. I suppose another option would be to do some of these calculations in the spreadsheet itself, but I'd much rather write logic in Python, under version control.
Ideally there would be some API hook like Django's context processors that would let you alter the context after it's been loaded from DEFAULT_CONTEXT, the filesystem, or the Google sheet but before it hits the template.
How are others handling this?