|
| 1 | +#!/usr/bin/env python3 |
| 2 | + |
| 3 | +import argparse |
| 4 | +import requests |
| 5 | +import itertools |
| 6 | +from collections import defaultdict |
| 7 | +from graphs import Graph, io |
| 8 | + |
| 9 | + |
| 10 | +# getting all the results will time out, so we do paging |
| 11 | +PAGE_SIZE = 10000 |
| 12 | +SPARQL_ENDPOINT = 'https://query.wikidata.org/sparql' |
| 13 | +USER_AGENT = 'tud-kbs-example-subgraph-extractor/0.0.1 (https://github.com/knowsys/Course-Knowledge-Graphs/)' |
| 14 | +# first, in a subquery, get the v/w pairs in a stable order and |
| 15 | +# retrieve a page of those. then find the labels for these results. |
| 16 | +QUERY = """#TOOL:tud-kbs-example-subgraph-extractor |
| 17 | +SELECT DISTINCT ?v ?vLabel ?w ?wLabel WHERE {{ |
| 18 | + {{ SELECT DISTINCT ?v ?w WHERE {{ |
| 19 | + ?v wdt:P1344/^wdt:P2522 ?w . |
| 20 | + # ?v wdt:P1344 ?event . |
| 21 | + # ?v wdt:P31/wdt:P279* wd:Q6979593 . |
| 22 | + # ?event wdt:P31?/wdt:P279* wd:Q170645 . |
| 23 | + # ?event ^wdt:P2522 ?w . |
| 24 | + }} ORDER BY ASC(?v) ASC(?w) LIMIT {limit} OFFSET {offset} }} |
| 25 | + SERVICE wikibase:label {{ |
| 26 | + bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . |
| 27 | + ?v rdfs:label ?vLabel . |
| 28 | + ?w rdfs:label ?wLabel . |
| 29 | + }} |
| 30 | +}} |
| 31 | +""" |
| 32 | + |
| 33 | + |
| 34 | +def counter(): |
| 35 | + c = itertools.count(1) |
| 36 | + |
| 37 | + def step(): |
| 38 | + return next(c) |
| 39 | + |
| 40 | + return step |
| 41 | + |
| 42 | + |
| 43 | +def paged(page): |
| 44 | + return QUERY.format(limit=PAGE_SIZE + 1, |
| 45 | + offset=(PAGE_SIZE + 1) * page) |
| 46 | + |
| 47 | + |
| 48 | +if __name__ == '__main__': |
| 49 | + parser = argparse.ArgumentParser(description=("Extract tournament winner/" |
| 50 | + "participant subgraph from" |
| 51 | + "Wikidata")) |
| 52 | + parser.add_argument('output', |
| 53 | + help='path to output graph') |
| 54 | + parser.add_argument('dict', |
| 55 | + help='path to output dictionary') |
| 56 | + args = parser.parse_args() |
| 57 | + |
| 58 | + ids = defaultdict(counter()) |
| 59 | + labels = {} |
| 60 | + edges = set([]) |
| 61 | + done = False |
| 62 | + page = 0 |
| 63 | + |
| 64 | + while not done: |
| 65 | + print('-!- getting page {}'.format(page)) |
| 66 | + request = requests.get(SPARQL_ENDPOINT, |
| 67 | + params={'query': paged(page), |
| 68 | + 'format': 'json'}, |
| 69 | + headers={'user-agent': USER_AGENT}) |
| 70 | + request.raise_for_status() |
| 71 | + results = request.json()['results']['bindings'] |
| 72 | + done = len(results) <= PAGE_SIZE |
| 73 | + page += 1 |
| 74 | + |
| 75 | + for binding in results: |
| 76 | + v = ids[binding['v']['value']] |
| 77 | + labels[v] = binding['vLabel']['value'] |
| 78 | + w = ids[binding['w']['value']] |
| 79 | + labels[w] = binding['wLabel']['value'] |
| 80 | + |
| 81 | + edges |= {(w, v)} |
| 82 | + |
| 83 | + graph = Graph(vertices=ids.values()) |
| 84 | + |
| 85 | + for (w, v) in edges: |
| 86 | + graph.add_edge(w, v) |
| 87 | + |
| 88 | + with open(args.output, 'w') as metis: |
| 89 | + io.write_metis_graph(metis, graph) |
| 90 | + |
| 91 | + with open(args.dict, 'w') as dictionary: |
| 92 | + for vertex_id, label in labels.items(): |
| 93 | + print('{},"{}"'.format(vertex_id, label), |
| 94 | + file=dictionary) |
0 commit comments