Category "flask"

REACT Frontend not talking to backend despite Flask-CORS

I'm writing an application REACT frontend and Flask backend (with Flask-cord installed). When I make a call from the frontend I get an error Access to fetch at

Unable to get the value from the drop down from html to python program in flask

I fetch the data from Mysql and populate the values to my html form in a drop down menu.Once the user selects the option, the value which gets sent back is only

Flask Babel RuntimeError: Working outside of request context

I tried to set up multiple Dash Apps inside a Flask App and use Flask Babel. from flask import Flask, request from flask_babel import Babel, gettext from werkze

Query difference between db.session.query and Model.query in flask-SQLAlchemy

The database is near 5 millions rows. I declare a model like below: class Amodel(db.Model): id = db.Column(db.Integer, primary_key=True) date = db.Col

KeyError while passing token in session

Below is the decorator function for checking the token in the session def token_required(f): @wraps(f) def decorated(*args, **kwargs): if not se

How to prevent Flask-WTF forms from closing modal when submitting invalid input?

I am trying to build a website where you can upload a video (this already works). But when submitting a wrong file format, the Flask-WTF form closes the modal.

App Engine and flask fails to get post message from webhook

I'm doing a webhook request from Paypal webhook simulator to an App Engine service, developped in flask. The webservice has a route to get webhooks using this s

How do I persist auth between react and a flask server

I created a flask server and added the following endpoints to this server: @auth_routes.route('/login', methods=['POST']) def log_in(): log_in_data = reques

Gunicorn worker terminated with signal 9

I am running a Flask application and hosting it on Kubernetes from a Docker container. Gunicorn is managing workers that reply to API requests. The following wa

flask-apispec not populating kwargs with values from GET query (implementation of example code from documentation)

I am using flask-apispec with webargs to define the types of a simple API. I have produced a minimal example, below, that reproduces the issue, which is that th

How to display dictionary with dataframes on a localhost (using Flask and Python)?

I have the following dict: {'id': 1, 'df': pd.DataFrame({'id': [1,2,3], 'col1': ['kuku', 'dudu', 'lulu'], 'col2': [8,9,10]}), 'df_size': 3} When I am trying to

Handle multiple request at same time on Flask web app

What I have: I've a Flask web app deployed to Heroku's server, which consists of only one web process app.py. Here it is: #importation from flask import Fla

Gunicorn + Flask + Docker python app hosted on Azure Container Instances returns SystemExit: 1

I deployed a web app on GPU enabled ACI (Azure Container Instance) using Gunicorn + Flask + Docker. This app runs a couple of pytorch models (one of them being

Flask Login is not working properly on Python Anywhere

This morning I tried to login in my account from my website(deployed on python anywhere). I typed my credentials and then I got a Server Error. The Error: Trace

how to click button and download a file using robot frame work or selenium, it not contains link

https://www.nasdaq.com/market-activity/stocks/screener - i need to download csv file from this site, If solution in selenium or robot frame work both are fine.

Heroku add folder to PYTHONPATH

Hello) My project has the following structure: app/ - api/ - ..some_folders/ - web/ start.py ... some files ... - run.py Procfile requirem

flask-restplus /flask-restx automatically add 401 response to Swagger docs if authentication is on

As the title mentions, I would like to have a @api.response(401, 'Unauthenticated') response added to the documentation of all APIs which require authentication

Error with default value in enum field when define model class

Hello I have the following model: class Status(Enum): scheduled: 'scheduled' recording: 'recording' complete: 'complete' failed: 'failed' @dat

Twilio Flask app video call is not connecting over a public IP address

I created an application in Flask Python with a frontend in HTML and Twilio SDK JavaScript version 2.3.0. A video call is working on local host, but if I try th

How to tell jinja about files in static sub-directories?

I have created a web app in which user uploads a image on my web app and that image is saved in myproject/static/uploads directory but I am unable to display th