Python 3 library for downloading YouTube Videos.
Project description
pytubefix
This python package is a solution to the problem with pytube regarding delays in updates
install:
pip install pytubefix
usage:
from pytubefix import YouTube
from pytubefix.cli import on_progress
url = input("URL >")
yt = YouTube(url, on_progress_callback = on_progress)
print(yt.title)
ys = yt.streams.get_highest_resolution()
ys.download()
If you want to save in .mp3 just pass the mp3=True parameter in the download() method, must be used together with the get_audio_only method:
from pytubefix import YouTube
from pytubefix.cli import on_progress
url = input("URL >")
yt = YouTube(url, on_progress_callback = on_progress)
print(yt.title)
ys = yt.streams.get_audio_only() # use this method -> get_audio_only()
ys.download(mp3=True) # pass the parameter mp3=Tre to save in .mp3
if you want to download complete playlists:
from pytubefix import YouTube
from pytubefix import Playlist
from pytubefix.cli import on_progress
url = input("URL Here >")
pl = Playlist(url)
for video in pl.videos:
ys = video.streams.get_audio_only()
ys.download(mp3=True) # pass the parameter mp3=Tre to save in .mp3
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
pytubefix-1.1.2.tar.gz
(66.8 kB
view details)
File details
Details for the file pytubefix-1.1.2.tar.gz.
File metadata
- Download URL: pytubefix-1.1.2.tar.gz
- Upload date:
- Size: 66.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae7c43f9629e04b5f5c78ee3e2941aebf5ea8f0a96f5bae420dc9448231f7268
|
|
| MD5 |
6bdb686e92f72adef5f2afb087bb328a
|
|
| BLAKE2b-256 |
04fbd6593ba2a4750c6abfa41ad7fca9d501f6982c647f2ac74f08280c144e83
|