Skip to content

Commit

Permalink
prepare github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Henning-arround committed Jul 30, 2024
1 parent afd7618 commit c9b8592
Show file tree
Hide file tree
Showing 3 changed files with 535 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ mines
dropped_functions.txt
data
abgabe*
choropleth map/
templates/choro.html

13 changes: 13 additions & 0 deletions convert.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from flask import Flask, render_template

app = Flask(__name__)

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


if __name__ == '__main__':
with app.test_request_context():
with open('index.html', 'w') as f:
f.write(render_template('symbol.html'))
Loading

0 comments on commit c9b8592

Please sign in to comment.