here2share

List_MP3s_To_Download.py

Dec 10th, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. # List MP3s To Download.py
  3.  
  4. from Tkinter import Tk
  5. root=Tk()
  6.  
  7. g1='''https://www.google.com/search?q=site:youtube.com+"'''
  8. g2='''"&ie=utf-8&oe=utf-8'''
  9.  
  10. aaa=root.selection_get(selection="CLIPBOARD")
  11. aaa=aaa.replace(' ','+').split('\n')
  12.  
  13. for z in aaa:
  14.     print g1+z+g2
Add Comment
Please, Sign In to add comment