mahrtayyab / tweety

Twitter Scraper
460 stars 62 forks source link

create_tweet with alt_texts #158

Closed Jamie1605 closed 7 months ago

Jamie1605 commented 7 months ago

I saw the added attribute of "alt_text" to media files of a tweet, but is there a way to add alt texts to one or multiple images of a tweet via the create_tweet function?

mahrtayyab commented 7 months ago

files argument of create_tweet accepts either

  1. filename which is str
  2. UploadedMedia instance
  3. tuple or list of (filename or UploadedMedia ) and str

second string in tuple is the alt text for that media.

mahrtayyab commented 7 months ago

It would be files=[('image1.png', 'alt text 1'), ('image2.jpg', 'alt text 2')]