Skip to main content

PyTubeLib is a tool for interacting with the YouTube Data v3 API using Python. With PyTubeLib, you can search for channels and videos using keywords, get details about specific channels and videos, and search for the latest videos from a channel. The class is designed to handle common API errors and returns results in JSON format for easy processing.

Project description

PyTubeLib

Installation

pip install pytubelib

Usage

from pytubelib import YTAPI

# Load credentials from a JSON file
creds_file = '/path/to/credentials.json'

# Create an instance of the YTAPI class
yt = YTAPI(creds_file)

# Search for channels by keyword
channels = yt.search_channels('xXBlackDev9010Xx')

# Get details for the first channel in the list
channel_id = channels[0]
channel_details = yt.get_channel_details(channel_id)

# Search for videos in the channel by keyword
videos = yt.search_new_videos(channel_id, 'tutorial')

# Get details for the first video in the list
video_id = videos[0]['id']['videoId']
video_details = yt.get_video_details(video_id)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytubelib-0.0.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

pytubelib-0.0.1-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page