This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(httr) | |
library(rvest) | |
library(base64enc) | |
library(readr) | |
get_shiny_data <- function() { | |
url <- "https://worldhealthorg.shinyapps.io/mpx_global/#26_Case_definitions" # URL of the webpage | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import wikipedia | |
import pandas as pd | |
import tempfile | |
import zipfile | |
import os | |
import json | |
from owid import walden |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
import pandas as pd | |
from io import BytesIO | |
base_url = "https://unstats.un.org/sdgapi" | |
url = f"{base_url}/v1/sdg/Goal/List" | |
res = requests.get(url) | |
assert res.ok |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.