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