File size: 365 Bytes
2372f0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from flask import Flask, render_template, jsonify
import json

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/api/events')
def get_events():
    with open('data/events.json') as f:
        events = json.load(f)
    return jsonify(events)

if __name__ == "__main__":
    app.run(host="0.0.0.0", port=7860)