A Python package to create youtube channels, sub channels, upload videos, create community posts, edit channel, delete channel, and so much more.
Project description
youtube_selenium_py
youtube_selenium_py is a Python package that simplifies interactions with YouTube using Selenium.
(Video iframe, title: "Youtube Selenium Py | Automate Youtube with Selenium and Python)
Table of Contents
Introduction
This package provides functionalities to perform various actions on YouTube, such as creating channels, uploading videos, managing community posts, retrieving channel statistics, and more. It mostly uses Selenium to automate interactions with the YouTube platform. The package has two main classes at this moment, the Youtube
class, and the YoutubeData
class. The Youtube
class is used for creating and getting information for the specific YouTube channel that is signed in, and the YoutubeData
class is used to get some basic information from a YouTube channel and YouTube videos.
Installation
-
Install package via pip:
pip install youtube_selenium_py
-
Upgrade setuptools (required for undetected chromedriver to work):
pip install --upgrade setuptools
-
Make sure you have Chromium browser installed on your operating system:
Windows:
macOS:
brew install chromium
Linux:
Debian/Ubuntu-based:
sudo apt update sudo apt install chromium-browser
Arch Linux:
sudo pacman -S chromium
Usage
After installation, import the package and utilize its classes and methods. Detailed usage instructions and examples are provided in the documentation.
Here is a quick video I recorded, of me going through the source code of the package, explaining each method, and also testing out the package:
(youtube video href)
Features
- Create and edit YouTube channels
- Upload videos to channels
- Manage community posts
- Retrieve channel and video statistics
- Delete channels and sub-channels
- Download videos and thumbnails
- And more (read documentation)
Examples
from youtube_selenium_py.classes import Youtube
# Initialize the Youtube object
yt = Youtube(email="your_email@example.com", password="your_password")
# There is a 20 second implicit sleep after signing in, because maybe you have 2 step authentication enabled, or it will send confirmation code to your phone. We suggest using a brand new google account, then this won't happen, everything will be automatic.
# Example: Create a channel
channel_creation_result = yt.create_channel()
print(channel_creation_result)
# Example: Upload a video
video_upload_result = yt.create_video(
absolute_video_path="/path/to/video.mp4",
video_title="My Video Title",
video_description="Description of my video"
)
print(video_upload_result)
# Close the driver when done
yt.close()
Documentation
Refer to the provided documentation for detailed usage instructions, method descriptions, and return formats.
Contributing
Contributions are welcome! Please follow the guidelines outlined in the CONTRIBUTING.md file.
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file youtube_selenium_py-1.0.9.tar.gz
.
File metadata
- Download URL: youtube_selenium_py-1.0.9.tar.gz
- Upload date:
- Size: 25.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2dfe2036ce67522d576507f9c0d721087473e418e7d24a7f3709021b6c7ec43 |
|
MD5 | 0af00656ce630d092ee73e21d3188550 |
|
BLAKE2b-256 | a2282a8d84d37d93afcc367f219adc7e4f094148678620d41a36510d5f1a48f2 |
File details
Details for the file youtube_selenium_py-1.0.9-py3-none-any.whl
.
File metadata
- Download URL: youtube_selenium_py-1.0.9-py3-none-any.whl
- Upload date:
- Size: 42.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea11ad1d57858126f03a16e72aafa5068dfd05daf7ba18649945e63667515813 |
|
MD5 | bcb25ca08e6a103825e5ba1651a4b5da |
|
BLAKE2b-256 | b22016790a0b542f556f4bf2fbffc51d37206d9304c58610a2e0a054e05d4c3a |