示例#1
0
 def __init__(self, name, idpod):
     podcasturl = "https://cdn-new-europe1.ladmedia.fr/var/exports/podcasts/sound/" + str(
         idpod) + ".xml"
     emission.__init__(self, name, podcasturl, idpod)
     self.idpod = idpod
     self.name = name
     self.podcasturl = podcasturl
示例#2
0
 def __init__(self, name, idpod, nomcode):
     podcasturl = "https://downloads.bbc.co.uk/podcasts/" + nomcode + "/" + str(
         idpod) + "/rss.xml"
     emission.__init__(self, name, podcasturl, idpod)
     self.idpod = idpod
     self.name = name
     self.podcasturl = podcasturl
示例#3
0
 def __init__(self, name, idpod):
     podcasturl = "https://radiofrance-podcast.net/podcast09/rss_" + str(
         idpod) + ".xml"
     emission.__init__(self, name, podcasturl, idpod)
     self.idpod = idpod
     self.name = name
     self.podcasturl = podcasturl
示例#4
0
 def __init__(self, name, idpod, rtl2=False):
     podcasturl = "https://www.rtl.fr/podcast/" + idpod + ".xml"
     if rtl2:
         podcasturl = "https://www.rtl2.fr/podcast/" + idpod + ".xml"
     emission.__init__(self, name, podcasturl, idpod)
示例#5
0
	def __init__(self,name,idpod,rtl2=False):
		podcasturl="http://www.rtl.fr/podcast/"+idpod+".xml"
		if rtl2:
			podcasturl="http://www.rtl2.fr/podcast/"+idpod+".xml"
		emission.__init__(self,name,podcasturl,idpod)
示例#6
0
	def __init__(self,name,idpod):
		podcasturl="http://cdn-new-europe1.ladmedia.fr/var/exports/podcasts/sound/"+str(idpod)+".xml"
		emission.__init__(self,name,podcasturl,idpod)
		self.idpod=idpod
		self.name=name
		self.podcasturl=podcasturl
	def __init__(self,name,idpod):
		podcasturl="http://radiofrance-podcast.net/podcast09/rss_"+str(idpod)+".xml"
		emission.__init__(self,name,podcasturl,idpod)
		self.idpod=idpod
		self.name=name
		self.podcasturl=podcasturl
示例#8
0
	def __init__(self,name,idpod):
		podcasturl="https://rss.rtbf.be/media/rss/audio/c21-"+idpod+".xml"
		emission.__init__(self,name,podcasturl,idpod)
		self.idpod=idpod
		self.name=name
		self.podcasturl=podcasturl
示例#9
0
	def __init__(self,name,idpod):
		podcasturl="http://rss.rtbf.be/media/rss/audio/c21-"+idpod+".xml"
		emission.__init__(self,name,podcasturl,idpod)
		self.idpod=idpod
		self.name=name
		self.podcasturl=podcasturl
示例#10
0
	def __init__(self,name,idpod,nomcode):
		podcasturl="http://downloads.bbc.co.uk/podcasts/"+nomcode+"/"+str(idpod)+"/rss.xml"
		emission.__init__(self,name,podcasturl,idpod)
		self.idpod=idpod
		self.name=name
		self.podcasturl=podcasturl