Questions tagged [flask]
Flask is a micro-framework for Python based on Werkzeug, Jinja 2 and good intentions.
145 questions
2
votes
1
answer
73
views
Flask App for Weather Prediction Using Machine Learning
I am building a personal machine learning project to predict the weather. I have already completed the code in Jupyter Notebook. Now, I am working on converting it into a Flask app.
I have just ...
5
votes
1
answer
160
views
Flask App: ML Project on Predicting Weather
I am working on a basic, personal ML project on predicting weather. First, I have finished working on Jupyter Notebook. And now, I am transforming it into create a Flask app.
I have just completed the ...
7
votes
1
answer
175
views
Crossword game with python and flask
I recently finished my first major software project, aiming to provide an educational crossword product for my school assignment that can generate and display always-unique crosswords. I learned a bit ...
2
votes
1
answer
84
views
Flask web normalizer CSV app
I've created a Flask application that processes Excel files uploaded by users. The application reads specific data based on client-specific keywords and generates a CSV file which users can download. ...
1
vote
0
answers
135
views
Text-Based Multiplayer RPG Engine using Flask & React
As a final project for a software engineering bootcamp, I decided to make a text-based multiplayer RPG game engine. Using Python, Flask, & Flask-SocketIO for the backend and React & TypeScript ...
5
votes
3
answers
1k
views
1
vote
0
answers
74
views
A server side for a Premier League score guessing app
So I'm writing a Premier League score prediction app with Python, Flask and SQLalchemy and have almost finished the server side of it. I realised that no one has ever looked at my code and there could ...
2
votes
0
answers
281
views
Minimal Chess Web GUI with Flask
Being a big chess fan, I finally started developing my own chess tool, however I'm already quite dissatisfied with where it's going...
folder structure:
...
2
votes
2
answers
115
views
Post Method using Flask
Basically I'm working on an API that receives a POST method and then uses some data to create a json and send it.
There are some constraints, for example the names that I have in my database are ...
2
votes
1
answer
503
views
Simple Secure Python Login Example
I'm trying to determine I missed something here since python isn't my native language.
Python app starts
Python creates a cert.pem and key.pem running this command ...
1
vote
1
answer
55
views
Create-flask-app with a single commend
Lately I was creating a loot of flask apps and I was getting a bit annoyed typing each time all the commands (make venv, flask env, pip installing, gitignore...)
So I decided to make a package that I ...
2
votes
1
answer
180
views
Many to many relationship in Flask with SQLAlchemy
I want to create a family tree where the relationships are only godfather and godson. Is this the right way to declare the personn class ?
...
1
vote
1
answer
215
views
Flask-SQLAlchemy achieve 1 to many relationship that backfills parent when child is updated
Currently I have two tables Plan (plans) and User (users) and there is a foreign key constraint on users which references plans.id
When I create a new user I want to assign a plan to that user via ...
2
votes
0
answers
161
views
Flask API application to serve SPA webapp
I've recently started learning python to gain some fullstack skills and am working on a backend for a webapp as a learning project. Before I get too far down this path I was wondering if someone ...
1
vote
0
answers
135
views
Injecting dependencies in Flask routes without a DI framework
I was wondering what might be the best way to inject Flask routes dependencies without a DI framework.
I came up with something like this (CalculationService being ...