I am trying to make a Twitter bot with tweepy. It's actually my first twitter BOT, I'm kinda new to it.
I have a list of medias containing the path of each image I need to send. I am able to send tweets with text
api.update_status(status="some text")
Or sending tweets with one single media
api.update_with_media(filename, status="some text with media")
But I need to send many images with my tweet. I heard that I need to upload my files first but I don't know how to integrate them in the tweet. Or maybe there is another way of doing it ?