Skip to content

Simple tool to be able to upload youtube videos without using the youtube API.

License

Notifications You must be signed in to change notification settings

vargab95/youtube-uploader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

youtube uploader

As I couldn't find a working youtube uploader in github which does not use the youtube API, I've implemented my own one.

Setup

git clone https://gitlab.com/vargab95/youtube-uploader.git
cd youtube-uploader
python3 setup.py install

Example code

from youtube_uploader.upload import YouTubeUploader, Video
from youtube_uploader.webdriver import UndetectedChromeWebDriver


webdriver = UndetectedChromeWebDriver()
uploader = YouTubeUploader(webdriver)

v = Video(path="video path",
          thumbnail="thumbnail path",
          title="title",
          description="description",
          category=1,
          tags="tag1, tag2",
          channel="youtube channel")

uploader.login()
uploader.upload(v)

About

Simple tool to be able to upload youtube videos without using the youtube API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages