КА
def foo(d: dict):
t = {}
for key, value in d.items():
if isinstance(value, dict):
t[key] = foo(value)
else:
if value is not None:
t[key] = value
return t
foo({'content_type': 'text', 'message_id': 3919, 'from_user': {'id': 999306209, 'is_bot': True, 'first_name': 'NoTagBot¹', 'username': None, 'last_name': None, 'language_code': None}, 'date': 1589210925, 'chat': {'type': 'private', 'last_name': '🥕', 'first_name': 'Морковочка', 'username': 'DneZyeK', 'id': 1066332915, 'title': None, 'all_members_are_administrators': None, 'photo': None, 'description': None, 'invite_link': None, 'pinned_message': None, 'sticker_set_name': None, 'can_set_sticker_set': None}, 'forward_from_chat': None, 'forward_from': None, 'forward_date': None, 'reply_to_message': None, 'edit_date': None, 'media_group_id': None, 'author_signature': None, 'text': '[gay]', 'entities': None, 'caption_entities': None, 'audio': None, 'document': None, 'photo': None, 'sticker': None, 'video': None, 'video_note': None, 'voice': None, 'caption': None, 'contact': None, 'location': None, 'venue': None, 'new_chat_member': None, 'new_chat_members': None, 'left_chat_member': None, 'new_chat_title': None, 'new_chat_photo': None, 'delete_chat_photo': None, 'group_chat_created': None, 'supergroup_chat_created': None, 'channel_chat_created': None, 'migrate_to_chat_id': None, 'migrate_from_chat_id': None, 'pinned_message': None, 'invoice': None, 'successful_payment': None, 'connected_website': None, 'json': {'message_id': 3919, 'from': {'id': 999306209, 'is_bot': True, 'first_name': 'NoTagBot¹'}, 'chat': {'id': 1066332915, 'first_name': 'Морковочка', 'last_name': '🥕', 'username': 'DneZyeK', 'type': 'private'}, 'date': 1589210925, 'text': '[gay]'}})
Return value:
{'content_type': 'text', 'message_id': 3919, 'from_user': {'id': 999306209, 'is_bot': True, 'first_name': 'NoTagBot¹'}, 'date': 1589210925, 'chat': {'type': 'private', 'last_name': '🥕', 'first_name': 'Морковочка', 'username': 'DneZyeK', 'id': 1066332915}, 'text': '[gay]', 'json': {'message_id': 3919, 'from': {'id': 999306209, 'is_bot': True, 'first_name': 'NoTagBot¹'}, 'chat': {'id': 1066332915, 'first_name': 'Морковочка', 'last_name': '🥕', 'username': 'DneZyeK', 'type': 'private'}, 'date': 1589210925, 'text': '[gay]'}}