mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-26 12:53:12 -06:00
Added reply function to session module
This commit is contained in:
parent
4f0db5537e
commit
66bf95ee62
@ -607,3 +607,14 @@ class Session(base.baseSession):
|
|||||||
media_ids.append(img.media_id)
|
media_ids.append(img.media_id)
|
||||||
item = self.api_call(call_name="update_status", status=obj["text"], _sound="tweet_send.ogg", tweet_mode="extended", in_reply_to_status_id=in_reply_to_status_id, media_ids=media_ids)
|
item = self.api_call(call_name="update_status", status=obj["text"], _sound="tweet_send.ogg", tweet_mode="extended", in_reply_to_status_id=in_reply_to_status_id, media_ids=media_ids)
|
||||||
in_reply_to_status_id = item.id
|
in_reply_to_status_id = item.id
|
||||||
|
|
||||||
|
def reply(self, text="", in_reply_to_status_id=None, attachments=[], *args, **kwargs):
|
||||||
|
if len(attachments) == 0:
|
||||||
|
item = self.api_call(call_name="update_status", status=text, _sound="reply_send.ogg", tweet_mode="extended", in_reply_to_status_id=in_reply_to_status_id, *args, **kwargs)
|
||||||
|
else:
|
||||||
|
media_ids = []
|
||||||
|
for i in attachments:
|
||||||
|
img = self.api_call("media_upload", filename=i["file"])
|
||||||
|
self.api_call(call_name="create_media_metadata", media_id=img.media_id, alt_text=i["description"])
|
||||||
|
media_ids.append(img.media_id)
|
||||||
|
item = self.api_call(call_name="update_status", status=text, _sound="reply_send.ogg", tweet_mode="extended", in_reply_to_status_id=in_reply_to_status_id, media_ids=media_ids, *args, **kwargs)
|
||||||
|
Loading…
Reference in New Issue
Block a user