Often times, after seeing a tweet, I go to https://poet.so to take a screenshot of it. However, this was kinda time consuming and stuff like that, but poet.so doesn't even have an API, so I create a selenium script that (very quickly) uses poet.so to take screenshots of a tweet.
To use the bot, simply reply to any tweet with @poet_this

The project is shockingly simple, but super useful. It hardly took 20 minutes for me to make it (because I already had some experiences with the twitter API - auto twitter banner changer )
in fact, it's so simple that this is all I needed to write (with a little bit of reverse engineering of the website and some keyboard tricks)
def get_poem(self, link, savepath="tweet.png"):
input_box = self.driver.find_element(by= "tag name", value="input")
input_box.send_keys(link + u'\ue007')
element = self.driver.find_element("xpath","//*[@data-export-hide]")
# Waiting for the image to load
time.sleep(5)
element.screenshot(savepath)
Anyways, I hope you like my little project. If you have any suggestions or issues, feel free to post them on github.
The repository is public here:
Please โญ this!
Dhravya
/
beautify-this-bot
A twitter bot that simply replies with a beautiful screenshot of the tweet, powered by beautify.dhravya.dev
Installation
git clone https://github.com/dhravya/beautify-this-bot.git
cd beautify-this-bot
pip install -r requirements.txt
Usage
python src/main.py
License
This project is licensed under the MIT license
Show your support
Leave a โญ if you like this project
Readme made with ๐ using README Generator by Dhravya Shah
I'm considering options to host the bot too, but hosting anything using selenium is quite the pain so i'll try my best. For now it's online on my own computer

Oldest comments (16)
You are super cool ๐ซ๐๐ฝ
I'll definitely be checking this out, super cool ๐
This is super cool.
Really nicely done
Looks great, I really like this glassmorphism design! ๐
Fancy!
Way to go! Nice...
I've already generated and shared photos from it. Absolutely cool!

Boy! You are flying ๐!!! Keep up!
I loved the banner changer with followers! I was looking for something like that ๐
Thanks! Glad I could help โจ
Another cool app, nice work.