-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathraincloud.py
36 lines (32 loc) · 1.08 KB
/
raincloud.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import subprocess
import playlist
songs = playlist.songs
for song in songs:
print song
subprocess.call("youtube-dl " + song + " --add-metadata --embed-thumbnail", shell=True)
print """
------ _____
/ \ ___\ ___/ ___
--/- ___ / \/ / / / \
/ / \__ //_ \
/ \ / ___ |
| ___ \/+--/ /
\__ \ \ /
\__ | /
\ /____ / / | /
_____/ ___ \/ /\
\__ / / | |
/ \____/ \ / //
// / / // / /\ /-_-/\//-__-
/ / // / \__// / / / //
// / / // / // / // /
/// // / / / // / //
// // // / // / /
/ / / / / / / /
/// / / / // // / // //
/// / / / / / /
/// / // / / // / / / /
// /// / /// / /
/ / // /// /
Enjoy :P
"""