def api_private_measurement_count_by_country():
url = urljoin(current_app.config['CENTRIFUGATION_BASE_URL'], 'count-by-country.json')
resp = requests.get(url)
return current_app.response_class(
resp.text,
mimetype=current_app.config['JSONIFY_MIMETYPE']
)
评论列表
文章目录