Created
January 3, 2010 18:35
-
-
Save meddulla/268075 to your computer and use it in GitHub Desktop.
download m3u playlist with curl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see http://wiki.alcidesfonseca.com/blog/casual-programming/ | |
# if no wget (as in mac 10.3) curl can be used | |
import os | |
for line in open("index.m3u"): | |
os.system("curl -O %s" % line) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment