Skip to content

Instantly share code, notes, and snippets.

View mzsrtgzr2's full-sized avatar
🎯
Focusing

Moshe Ro mzsrtgzr2

🎯
Focusing
  • tel aviv
View GitHub Profile
@mzsrtgzr2
mzsrtgzr2 / get_songs.py
Created December 9, 2021 09:27
Download mp3 songs from Youtube
# https://medium.com/@mklaben15/using-python-to-download-a-youtube-playlist-and-convert-to-mp3-for-a-custom-spotify-library-87ab950958a7
from pytube import YouTube
from pytube import Playlist
import os
import moviepy.editor as mp
import re
from youtubesearchpython import PlaylistsSearch
@mzsrtgzr2
mzsrtgzr2 / gist:dd4ca5c402a9d4a2447545cad7d6f6d3
Created December 8, 2021 20:24
Download Mp3 playlist from Youtube
# https://medium.com/@mklaben15/using-python-to-download-a-youtube-playlist-and-convert-to-mp3-for-a-custom-spotify-library-87ab950958a7
# pip install pytube moviepy
from pytube import YouTube
from pytube import Playlist
import os
import moviepy.editor as mp
import re
class myproperty:
def __init__(self, func):
self.f = func
def setter(self, func):
self.setter_func = func
return self
def __get__(self, instance, klass):
return self.f(instance or klass)