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] Reels/Videos upload #30

Closed GregoryWullimann closed 11 months ago

GregoryWullimann commented 11 months ago

Hi!

I wanted to upload reels using Ensta but it seems to support only photos at the moment.

I checked how reels are uploaded compared to images and the system is similar, the only big difference is that also a thumbnail is uploaded.

Any plans on adding this feature?

diezo commented 11 months ago

Hi. Thanks for the suggestion.

I'm currently working on this feature and you'll soon be able to upload reels using ensta.

diezo commented 11 months ago

In the meantime, it'll be great if you star this repository so that more developers get to know about ensta. Thankyou.

diezo commented 11 months ago

Feature has successfully been added.

from ensta import Host

host = Host(username, password)

host.upload_reel(
    video_path="Video.mp4",
    thumbnail_path="Thumbnail.jpg",
    caption="Enjoying the winter! ⛄"
)