예제 #1
0
	def P_mediaplayerlist(self, request):
		path = ""
		if "path" in request.args.keys():
			path = request.args["path"][0]
			
		types = ""
		if "types" in request.args.keys():
			types = request.args["types"][0]
			
		return mediaPlayerList(self.session, path, types)
예제 #2
0
    def P_mediaplayerlist(self, request):
        path = ""
        if "path" in request.args.keys():
            path = request.args["path"][0]

        types = ""
        if "types" in request.args.keys():
            types = request.args["types"][0]

        return mediaPlayerList(self.session, path, types)