Skip to content

Instantly share code, notes, and snippets.

@jorandradefig
Created May 18, 2018 20:37
Show Gist options
  • Select an option

  • Save jorandradefig/82b58cc3fe921e0334e3747d2880c1fe to your computer and use it in GitHub Desktop.

Select an option

Save jorandradefig/82b58cc3fe921e0334e3747d2880c1fe to your computer and use it in GitHub Desktop.
Solicitudes - INAI (Descargar todos los metadatos)
rm(list=ls())
setwd("~")
library(jsonlite)
pageSize <- 10000
total <- 9620
for (i in 1:total){
print(i)
url <- paste("https://api.datos.gob.mx/v1/inai.solicitudes?page=", i, "&pageSize=", pageSize, sep = "")
print(url)
df <- fromJSON(url, flatten = TRUE)
print(df)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment