54,985 questions
Score of 0
1 answer
119 views
Terminating Flask app by Ctrl+C does not trigger KeyboardInterrupt
A simple Flask app like this:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
try:
print(1111111)
...
Score of 1
0 answers
137 views
Socket Emit fail to delivery in multi-worker
I am using flask-socketio v5.6.1 with gunicorn and geventt. I been struggle with one recurring issue.
My configuration:
gunicorn -c cloud_gunicorn.conf.py --worker-class gevent --workers 5 --timeout ...
Score of 0
0 answers
72 views
Submit the form with a custom JWT header [closed]
I use JWT encrypted Ethereum private keys and I would like to combine Flask login with Flask JWT extended. I need this because private keys can be intercepted that why I encrypt them with JWT extended....
Score of -4
0 answers
195 views
Are Flask HTTP requests from a Jinja template to a Flask api safer than from React or any other frontend framework [closed]
I want to send crypto private keys to the server but am afraid of how hackers can intercept this data. I was wondering if there is a benefit of using Flask with Jinja templates so that maybe it is ...
Score of 2
1 answer
196 views
Threading Flask and 'while' loop
I want make the while loop and Flask program run simultaneously:
import serial
import sqlite3
from flask import Flask
from pynput.keyboard import Key, Listener
import threading
sql_conn = sqlite3....
Score of 0
2 answers
122 views
CNN digit recognition model: high local accuracy but poor predictions after deployment (Flask API)
I trained a CNN on MNIST for digit recognition that gets ~98% accuracy during local testing (Jupyter/Colab). After deploying it behind a Flask API (React frontend sends canvas-drawn digit images), ...
Score of 2
0 answers
170 views
How to avoid cyclic dependency when using Flask as Viewer part of MVC setup?
I made a little multiplication table game with a multiplayer mode. For the future I have started to decouple the logic and the output, so I can easily (easier) add new math tasks like addition, ...
Score of 0
1 answer
80 views
Flask Ratelimit issue
I'm trying to rate limit an API request on my website. However, when I used flask Limiter, it just ignored it.
from flask_limiter import Limiter
from flask_limiter.util import get_remote_address
This ...
Score of 0
1 answer
112 views
Flask --app app run from_envvar gets the root_path appended to env var
I have a problem with Flasks app.config.from_envvar() function.
Everytime I set a variable like this
set MOVIEDB_SETTINGS='C:\tmp\settings.py'
Flask get the error:
OSError: [Errno 22] Unable to load ...
Score of 3
1 answer
95 views
How can i handle file too large exception inside a view with Flask?
I want to catch the RequestEntityTooLarge inside my view, but instead my custom error handler is called.
My "movie.py" has a route to create a new movie entry.
from flask import (
...
Best practices
1
vote
3
replies
111
views
About the Pythonic code on FastAPI and Flask back end
I've done some jobs with the FastAPI or Flask on the backend, but in both situations there was no type of layering of the responsabilities. Like everything was done into the controller layer right ...
Best practices
0
votes
1
replies
79
views
How much business logic should live in Shopify Metaobjects versus an external Flask backend?
I'm building a custom Shopify application with a Flask backend.
Currently I store business data in Shopify Metaobjects because it integrates nicely with themes and Admin UI.
As the application grows, ...
Score of 0
1 answer
140 views
Error sending HTML form data with JavaScript front end through Flask backend to MySQL database [closed]
I get the error "400 (BAD REQUEST)" in the browser (dev tools) console when trying to send HTML form data with JS frontend to MySQL database through a flask back end.
HTML form:
<form id=&...
Score of -3
1 answer
108 views
Error trying to upload MS Excel file from JS front end to Python Flask back end [closed]
I am trying to upload an MS Excel file from JS front end to a Python Flask back end with fetch-api. but I get the following error message below. I am not too familiar with other means of using AJAX or ...
Advice
0
votes
1
replies
55
views
How to integrate CNN model with Flutter app for plant disease detection - API vs TFLite?
I'm building a Flutter app for rice leaf disease detection using CNN as my thesis project.
I'm confused about the best architecture:
Option 1: Deploy CNN model as REST API (Python Flask/FastAPI), ...