Is it possible to upload a video from another running python script using youtube-upload?
I have a script which creates a video in moviepy and would like to upload that created video to youtube.
How can I go about doing this? e.g.
from youtube_upload import upload_video
upload_video("1.mp4", "example title")
I'm using Python 3 and Windows OS.
Thanks.