Advertisement
MertcanGokgoz

Youtube Thumbnail

Dec 20th, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. #/usr/bin/python3.4
  2. __author__ = 'Mertcan Gokgoz'
  3.  
  4. from bs4 import BeautifulSoup
  5. from urllib.request import urlopen
  6.  
  7. pasteURL = input("Youtube Linkini Giriniz: ")
  8. data = urlopen(pasteURL).read()
  9. youtubeUrl = BeautifulSoup(data)
  10.  
  11. for links in youtubeUrl.find_all('link',itemprop="thumbnailUrl"):
  12.     print ("Thumbnail :" + " " + links.get('href'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement