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 }
def P_getsatellites(self, request): stype = "tv" if "stype" in request.args.keys(): stype = request.args["stype"][0] return getSatellites(stype)