Last active
April 21, 2021 07:14
-
-
Save eSlider/af2daad07324ed9112c81cfde7be56d5 to your computer and use it in GitHub Desktop.
Get location translations by Wiki ID
This file contains hidden or 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
#!/bin/sh | |
WikiID=$(test -z $1 && echo "Q2090" || echo $1) | |
curl -X GET "https://www.wikidata.org/w/api.php?action=wbgetentities&ids=${WikiID}&format=json" | jq ".entities[].labels | map( {(.language): .value} )" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment