I would like to do a Wikidata query of many values that are listed in a column of a CSV file on my computer. How can I load the values from the CSV file into the Wikidata query automatically without copying them in manually?
So far I have worked with the Wikidata query in Visual Studio Code.
This is the query I made for one person:
SELECT ?Author ?AuthorLabel ?VIAF ?birthLocation
WHERE {
VALUES ?VIAF {"2467372"}
?Author wdt:P214 ?VIAF ;
wdt:P19 ?birthLocation .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_Language],de". }
}
I want to automatically load many values into the curly brackets of the query above from the column of my CSV file.