def P_satellites(self, request):
		stype = "tv"
		if "stype" in request.args.keys():
			stype = request.args["stype"][0]
		sat = getSatellites(stype)
		return { "satellites": sat['satellites'], "stype": stype }
Ejemplo n.º 2
0
	def P_getsatellites(self, request):
		stype = "tv"
		if "stype" in request.args.keys():
			stype = request.args["stype"][0]
		return getSatellites(stype)
Ejemplo n.º 3
0
	def P_satellites(self, request):
		stype = "tv"
		if "stype" in request.args.keys():
			stype = request.args["stype"][0]
		sat = getSatellites(stype)
		return { "satellites": sat['satellites'], "stype": stype }
Ejemplo n.º 4
0
 def P_getsatellites(self, request):
     stype = "tv"
     if "stype" in request.args.keys():
         stype = request.args["stype"][0]
     return getSatellites(stype)