super(PinPoint, self).__init__() """获取pinpoint中应用""" def get_applications(self): '''return application dict ''' applicationListUrl = PPURL + "/applications.pinpoint" res = requests.get(applicationListUrl) if res.status_code != 200: print("请求异常,请检查") return applicationList...