def get_worldSum(): response = Response().getWorldSum() return response
def get_chinaDaily(): response = Response().getChinaDaily() return response
def get_worldDailyData(country): response = Response().getWorldSingleData(country) return response
def get_worldDaily(): response = Response().getWorldDaily() return response
def get_mapJson(name): name1 = str(name) response = Response().getMapJson(name1) return response
def get_chinaProvinceDaily(): response = Response().getChinaProvinDailyData() return response
def get_news(): response = Response().getNews() return response
def get_news_item(number): number = eval(number) response = Response().getNewsItem(number) return response
def get_rumors(): response = Response().getRumors() return response
def get_worldPredict(name): response = Response().getPredictData(name) return response
def get_chinaCity(name): response = Response().getChinaCityData(name) return response
def get_chinaProvince(name): response = Response().getChinaProvinceData(name) return response
def get_chinaSum(): response = Response().getChinaSum() return response