17 lines
658 B
Python
17 lines
658 B
Python
datasets = [
|
|
"coronavirus-commercants-parisiens-livraison-a-domicile",
|
|
"deconfinement-pistes-cyclables-temporaires",
|
|
"deconfinement-parking-relais-doublement-des-places",
|
|
]
|
|
url = "https://opendata.paris.fr/api/records/1.0/search/?dataset={}&q=&rows=-1"
|
|
filenames = {
|
|
"coronavirus-commercants-parisiens-livraison-a-domicile": "home-delivery",
|
|
"deconfinement-pistes-cyclables-temporaires": "cycling-paths",
|
|
"deconfinement-parking-relais-doublement-des-places": "relay-parking",
|
|
}
|
|
files = {
|
|
"cycling-paths": "data/cycling-paths.json",
|
|
"relay-parking": "data/relay-parking.json",
|
|
"home-delivery": "data/home-delivery.json",
|
|
}
|