-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.py
54 lines (40 loc) · 1.59 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
import json
from rdflib import Graph
from flask import Flask, jsonify, render_template, request
################################################################################
# Init
################################################################################
app = Flask(__name__)
################################################################################
# Query SVG
################################################################################
@app.route('/query', methods = ['POST'])
def queryData():
p_filename = request.form['filename']
g = Graph()
if not p_filename:
g.parse('static/images/Truck.svg', format = 'rdfa')
else:
g.parse('static/images/' + p_filename, format = 'rdfa')
results = []
for s, p, o in g:
results.append([s, p, o])
return json.dumps(results)
################################################################################
# Serve SVG files
################################################################################
@app.route('/svg/<filename>', methods = ['GET'])
def maps(filename):
return app.send_static_file('images/' + filename)
################################################################################
# Serve index file
################################################################################
@app.route('/', methods = ['GET'])
def index():
return render_template('index.html')
################################################################################
# Start app
################################################################################
if __name__ == '__main__':
app.run()