|
|
@ -37,16 +37,18 @@ sparql3 = SPARQLWrapper("https://query.daap.bannerrepeater.org/proxy/wdqs/bigdat |
|
|
|
@app.route("/") |
|
|
|
def home(): |
|
|
|
sparql.setQuery(''' |
|
|
|
SELECT ?work ?workLabel ?image ?date WHERE { |
|
|
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } |
|
|
|
?work wdt:P1 wd:Q1. |
|
|
|
OPTIONAL { ?work p:P30 ?statement. |
|
|
|
SELECT ?work ?workLabel ?image ?date ?dateadded WHERE { |
|
|
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } |
|
|
|
?work wdt:P1 wd:Q1; |
|
|
|
wdt:P87 ?dateadded. |
|
|
|
?work p:P30 ?statement. |
|
|
|
?statement ps:P30 ?image; |
|
|
|
pq:P54 wd:Q90.} |
|
|
|
OPTIONAL { ?work wdt:P13 ?date. } |
|
|
|
FILTER(?work != wd:Q57) |
|
|
|
} |
|
|
|
ORDER BY (?workLabel) |
|
|
|
pq:P54 wd:Q90. |
|
|
|
?work wdt:P13 ?date. |
|
|
|
FILTER(?work != wd:Q57) |
|
|
|
} |
|
|
|
ORDER BY (?dateadded) |
|
|
|
LIMIT 12 |
|
|
|
''') |
|
|
|
sparql.setReturnFormat(JSON) |
|
|
|
results = sparql.query().convert() |
|
|
@ -157,13 +159,17 @@ def publishersindex(): |
|
|
|
@app.route("/selfpublishedindex") |
|
|
|
def selfpublishedindex(): |
|
|
|
sparql.setQuery(''' |
|
|
|
SELECT ?work ?workLabel ?workAltLabel ?workDescription |
|
|
|
WHERE { |
|
|
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } |
|
|
|
?work wdt:P1 wd:Q1; |
|
|
|
wdt:P10 wd:Q71. |
|
|
|
FILTER(?work != wd:Q57) |
|
|
|
} |
|
|
|
SELECT ?work ?workLabel ?image ?date |
|
|
|
WHERE { |
|
|
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } |
|
|
|
?work wdt:P1 wd:Q1; |
|
|
|
wdt:P10 wd:Q71. |
|
|
|
OPTIONAL {?work p:P30 ?statement. |
|
|
|
?statement ps:P30 ?image; |
|
|
|
pq:P54 wd:Q90.} |
|
|
|
OPTIONAL { ?work wdt:P13 ?date. } |
|
|
|
FILTER(?work != wd:Q57) |
|
|
|
} |
|
|
|
''') |
|
|
|
sparql.setReturnFormat(JSON) |
|
|
|
results = sparql.query().convert() |
|
|
@ -173,16 +179,21 @@ def selfpublishedindex(): |
|
|
|
@app.route("/zinesindex") |
|
|
|
def zinesindex(): |
|
|
|
sparql.setQuery(''' |
|
|
|
SELECT ?work ?workLabel ?workAltLabel ?workDescription |
|
|
|
WHERE { |
|
|
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } |
|
|
|
?work wdt:P1 wd:Q1; |
|
|
|
wdt:P16 wd:Q152. |
|
|
|
FILTER(?work != wd:Q57) |
|
|
|
} |
|
|
|
SELECT ?work ?workLabel ?image ?date |
|
|
|
WHERE { |
|
|
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } |
|
|
|
?work wdt:P1 wd:Q1; |
|
|
|
wdt:P10 wd:Q71. |
|
|
|
OPTIONAL {?work p:P30 ?statement. |
|
|
|
?statement ps:P30 ?image; |
|
|
|
pq:P54 wd:Q90.} |
|
|
|
OPTIONAL { ?work wdt:P13 ?date. } |
|
|
|
FILTER(?work != wd:Q57) |
|
|
|
} |
|
|
|
''') |
|
|
|
sparql.setReturnFormat(JSON) |
|
|
|
results = sparql.query().convert() |
|
|
|
print(results) |
|
|
|
return render_template('zinesindex.html', results=results) |
|
|
|
|
|
|
|
|
|
|
@ -342,7 +353,7 @@ def artwork(): |
|
|
|
# text=soup.find_all("p") |
|
|
|
artworkdescriptiontext=Markup(text) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print(artworkdescriptiontext) |
|
|
|
|
|
|
|
############ right bottom LATER |
|
|
|