python
profile = UserProfile.objects.get(user_id=1)
data = profile.user_data  # This is a Python dictionary    
data["age"] = 26
profile.save()