diezo / Ensta

🔥 Fast & Reliable Python Package For Instagram API - 2024
https://bit.ly/ensta-discord
MIT License
371 stars 44 forks source link

FEATURE REQUEST: Alt text for photo posts #40

Closed JoeD4321 closed 11 months ago

JoeD4321 commented 11 months ago

Could you add the ability for add "Alternate Text" to photo posts, for the blind and other accessibility issues?

Thanks

diezo commented 11 months ago

thanks for the suggestion. i'll implement this feature soon!

diezo commented 11 months ago

this feature has been implemented. here's the code:

from ensta import Host

host = Host(username, password)

upload = host.get_upload_id("Picture.jpg")

host.upload_photo(
    upload,
    caption="Travelling 🌆",
    alt_text="photo of a dog"
)

same goes for uploading reels, just specify the alt_text parameter.

thank you