Index: channels/google.py ================================================================== --- channels/google.py +++ channels/google.py @@ -56,22 +56,22 @@ ### constants ################################################################# GOOGLE_DIRECTORY_ROOT = "http://www.dmoz.org" -CATEGORIES_URL_POSTFIX = "/Arts/Music/Sound_Files/MP3/Streaming/Stations/" +CATEGORIES_URL_POSTFIX = "/Arts/Radio/Internet/" #GOOGLE_DIRECTORY_ROOT = "http://directory.google.com" #CATEGORIES_URL_POSTFIX = "/Top/Arts/Music/Sound_Files/MP3/Streaming/Stations/" GOOGLE_STATIONS_HOME = GOOGLE_DIRECTORY_ROOT + CATEGORIES_URL_POSTFIX """
  • Jazz""" -re_category = re.compile('()([^:]+?)()', re.I|re.M) +re_category = re.compile('()([^:]+?)()@', re.I|re.M) #re_stream = re.compile('^(.*)') #re_description = re.compile('^
    (.*?)') """
  • Atlanta Blue Sky - Rock and alternative streaming audio. Live real-time requests.""" -re_stream_desc = re.compile('^
  • ([^<>]+)( - )?([^<>\n\r]+)', re.M|re.I) +re_stream_desc = re.compile('
  • \s*([^<>]+)\s*( - )?\s*([^<>\n\r]+)', re.M|re.I) ######