Disséquer un APK pour trouver une API de météo - LinuxFr.org
jeudi 12 décembre 2019 à 11:36# pour avoir la météo
curl -s -S 'http://ws.meteofrance.com/ws/getLieux/rennes.json' | jq -rc '.result.france[]|[.indicatif, .nom]|@csv'
curl -s -S 'http://ws.meteofrance.com/ws/getDetail/france/352380.json' | jq -rc '.result.previsions48h|.[]|[.moment, .description]|@csv'
Sinon il y a ça :
curl -4 http://wttr.in/Rennes
— Permalink
curl -s -S 'http://ws.meteofrance.com/ws/getLieux/rennes.json' | jq -rc '.result.france[]|[.indicatif, .nom]|@csv'
curl -s -S 'http://ws.meteofrance.com/ws/getDetail/france/352380.json' | jq -rc '.result.previsions48h|.[]|[.moment, .description]|@csv'
Sinon il y a ça :
curl -4 http://wttr.in/Rennes
— Permalink