Skip to main content

Question list filters

Filter by
Sorted by
Tagged with
Score of 0
1 answer
119 views

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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), ...

15 30 50 per page
1
2 3 4 5
3666