in src/asfquart/session.py [0:0]
def write(session_data: dict, app=None):
"""Sets a cookie-based user session for this app"""
if app is None:
app = asfquart.APP
cookie_id = app.app_id
dict_copy = session_data.copy() # Copy dict so we don't mess with the original data
dict_copy["uts"] = time.time() # Set last access timestamp for expiry checks later
quart.session[cookie_id] = dict_copy