~ubuntu-branches/ubuntu/maverick/radiotray/maverick

« back to all changes in this revision

Viewing changes to src/PlsPlaylistDecoder.py

  • Committer: Bazaar Package Importer
  • Author(s): Elías Alejandro Año Mendoza
  • Date: 2010-04-25 22:59:32 UTC
  • Revision ID: james.westby@ubuntu.com-20100425225932-31wvsqot3qahto3a
Tags: upstream-0.5.1
Import upstream version 0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##########################################################################
 
2
# Copyright 2009 Carlos Ribeiro
 
3
#
 
4
# This file is part of Radio Tray
 
5
#
 
6
# Radio Tray is free software: you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation, either version 1 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# Radio Tray is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with Radio Tray.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##########################################################################
 
20
import urllib2
 
21
 
 
22
class PlsPlaylistDecoder:
 
23
 
 
24
    def __init__(self):
 
25
        print "PLS playlist decoder"
 
26
        
 
27
    def extractStream(self,  url):
 
28
            
 
29
            print "Downloading playlist..."
 
30
            
 
31
            req = urllib2.Request(url)
 
32
            f = urllib2.urlopen(req)
 
33
            str = f.read()
 
34
            f.close()
 
35
            
 
36
            print "Playlist downloaded"
 
37
            print "Decoding playlist..."
 
38
            
 
39
            playlist = []
 
40
            lines = str.split("\n")
 
41
            for line in lines:
 
42
 
 
43
                if line.startswith("File") == True:
 
44
 
 
45
                        list = line.split("=")
 
46
                        playlist.append(list[1])
 
47
      
 
48
            
 
49
            return playlist
 
50
            
 
51