This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sat Apr 11 12:19:24 +0800 2015 | |
| ../configure | |
| --prefix=/usr/local/Cellar/libvpx/1.4.0 | |
| --enable-pic | |
| --disable-unit-tests | |
| --disable-examples | |
| enabling pic | |
| disabling unit_tests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import argparse | |
| from datetime import datetime, timezone | |
| def extract_text_from_message_obj(msg_obj): | |
| if not msg_obj or 'content' not in msg_obj: | |
| return '' | |
| parts = msg_obj['content'].get('parts', []) | |
| if isinstance(parts, list): | |
| # Объединяем список строк с переносами строк |