Skip to content

Commit

Permalink
First YouTube Downloader from command line
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshlinux committed Apr 21, 2018
1 parent c68ee0c commit 436e7b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Binary file not shown.
7 changes: 7 additions & 0 deletions webscraper/youtubeDownloader.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from __future__ import unicode_literals
import youtube_dl
import urllib
import shutil
ydl_opts = {}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://www.youtube.com/watch?v=n06H7OcPd-g'])

0 comments on commit 436e7b0

Please sign in to comment.