This file contains hidden or 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 | |
# Audio extraction script for All of Bach: | |
# http://allofbach.com/en/ | |
import re | |
import urllib2 | |
from BeautifulSoup import BeautifulSoup | |
page = urllib2.urlopen('http://allofbach.com/en/bwv/') | |
soup = BeautifulSoup(page) |