You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 30, 2020. It is now read-only.
Currently, the Mml()'s parse_msg() function does not include references to attachments.
It would be great to have an indication as to whether a message has attachments, e.g.:
def parse_msg(self, datafeed):
for message in datafeed:
... omitted ...
if 'attachments' in message:
message_broke['attachments'] = []
for attachment in message['attachments']:
if 'id' in attachment:
message_broke['attachments'].append(attachment['id']);
message_parsed.append(message_broke)
Currently, the
Mml()'sparse_msg()function does not include references to attachments.It would be great to have an indication as to whether a message has attachments, e.g.: