Updated README to mention BeautifulSoup, got rid of unnecessary print statement
authorDylan Lloyd <dylan@psu.edu>
Tue, 18 Jan 2011 22:15:12 +0000 (17:15 -0500)
committerDylan Lloyd <dylan@psu.edu>
Tue, 18 Jan 2011 22:15:12 +0000 (17:15 -0500)
README
likes_pandora.py

diff --git a/README b/README
index 5b9513c..63fc829 100644 (file)
--- a/README
+++ b/README
@@ -14,6 +14,10 @@ Requires youtube-dl to be installed. follow instruction here:
 http://rg3.github.com/youtube-dl/
 Or use your favorite package-management system to install youtube-dl. Make sure youtube-dl is up to date if there are problems by running 'youtube-dl -U'.
 
+Also requires the BeautifulSoup module for Python, which can be found here:
+http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-3.2.0.tar.gz
+To install, after extracting the archive, `cd` into the directory and `python setup.py install` to install the module.
+
 Notifications require Nofify OSD (https://launchpad.net/notify-osd), which ships with Ubuntu.
 
 See http://www.github.com/nospampleasemam/youtube_backup for more information and the latest version.
index c302d7f..5e376ff 100755 (executable)
@@ -77,7 +77,6 @@ def fetch_search_video_ids(search_strings):
         page = urllib.urlopen(search_url)
         page = BeautifulSoup(page)
         result = page.find('div', attrs={'class':'video-main-content'})
-        print result
         if result == None:
             print 'odd feedback for search, could not find div at ', search_url
             continue