Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,545 changes: 1,545 additions & 0 deletions .ipynb_checkpoints/DataProcessing-checkpoint.ipynb

Large diffs are not rendered by default.

Empty file.
377 changes: 377 additions & 0 deletions .ipynb_checkpoints/datos-checkpoint.csv

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions .ipynb_checkpoints/main-checkpoint.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
from flask import Flask, request, render_template
from flask import json
from flask_wtf import FlaskForm
from wtforms import StringField
from flask.json import jsonify, load
from numpy import character
from sqlalchemy.util.langhelpers import method_is_overridden
import tools.sql_tools as sql

app = Flask(__name__)
app.config['SECRET_KEY'] = 'Thisisasecret!'


@app.route("/")
def startup():
return "Hello World"

@app.route("/collection")
def collection():
collection = sql.collection()
return collection

@app.route("/entry")
def gamecomments():
id_ = request.args['id']
entry = sql.entry(id_)
return entry

@app.route("/e10")
def collection():
collection = sql.e10()
return collection

@app.route("/sp98")
def collection():
collection = sql.sp98()
return collection

app.run(debug=True)
Loading