Beispiel #1
0
def get_worldSum():
    response = Response().getWorldSum()
    return response
Beispiel #2
0
def get_chinaDaily():
    response = Response().getChinaDaily()
    return response
Beispiel #3
0
def get_worldDailyData(country):
    response = Response().getWorldSingleData(country)
    return response
Beispiel #4
0
def get_worldDaily():
    response = Response().getWorldDaily()
    return response
Beispiel #5
0
def get_mapJson(name):
    name1 = str(name)
    response = Response().getMapJson(name1)
    return response
Beispiel #6
0
def get_chinaProvinceDaily():
    response = Response().getChinaProvinDailyData()
    return response
Beispiel #7
0
def get_news():
    response = Response().getNews()
    return response
Beispiel #8
0
def get_news_item(number):
    number = eval(number)
    response = Response().getNewsItem(number)
    return response
Beispiel #9
0
def get_rumors():
    response = Response().getRumors()
    return response
Beispiel #10
0
def get_worldPredict(name):
    response = Response().getPredictData(name)
    return response
Beispiel #11
0
def get_chinaCity(name):
    response = Response().getChinaCityData(name)
    return response
Beispiel #12
0
def get_chinaProvince(name):
    response = Response().getChinaProvinceData(name)
    return response
Beispiel #13
0
def get_chinaSum():
    response = Response().getChinaSum()
    return response