Last active
August 29, 2015 14:04
-
-
Save kernelp4nic/d404e3b6d258cbcaa7df to your computer and use it in GitHub Desktop.
wget music for programming
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
#!/usr/bin/python | |
# brew install python | |
# pip install feedparser | |
import feedparser | |
from subprocess import call | |
feed = feedparser.parse('http://musicforprogramming.net/rss.php') | |
for entry in feed.entries: | |
for link in entry.links: | |
if "mp3" in link.href: | |
call(["wget", "-nc", link.href]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment