It does not recognize the route /greeting - python

I'm new to flask, I'm trying to do a rest api, but when creating my route it doesn't recognize it for me.
I have imported flask and python 3.8.
from products import products
from flask import Flask
#app.route('/greeting')
def greeting():
return 'hi'
if __name__ == '__main__':
app.run(debug=True, port=4000)

You need to create the instance of the Flask class
app = Flask(__name__)
A minimal Flask application looks something like this:
from flask import Flask
app = Flask(__name__)
#app.route('/greeting')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
app.run(debug=True, port=4000)
Now you could see it running at:
* Running on http://127.0.0.1:4000/
Access the greeting as http://127.0.0.1:4000/greeting
For more info read this

Related

Flask application in spyder

I am trying to run a simple flask application in spyder(anaconda). But I am not getting expected results. Can anyone help me here?
from flask import Flask
app = Flask(__name__)
def return_val(a):
return a+1
#app.route('/')
def index():
return return_val(8)
if __name__ == "__main__":
app.run(port=8080)
I am expecting 9 to be printed on the application.

How to redirect in aws app runner with flask

I am trying to deploy my flask application to aws app runner, locally everything works perfectly. But I can't figure out how to redirect to another page of my website in app runner
My code looks similar to this
from flask import Flask, url_for
from waitress import serve
app = Flask(__name__)
#app.route("/hello")
def hello():
return "Hello"
#app.route("/redirect_to")
def redirect_to():
return "Redirected successfully!"
#app.route("/redirect_from")
def redirect_from():
return redirect(url_for("redirect_to"))
if __name__ == "__main__":
serve(app, host="0.0.0.0", port=8000)
App runner provided "Default domain" that redirects all traffic to my app, that is running on 0.0.0.0:8000. When I request default-domain.awsapprunner.com/hello, it successfully redirects to 0.0.0.0:8000/hello, but when I try to request default-domain.awsapprunner.com/redirect_from page loads forever. I think it happens because my app redirects to 0.0.0.0, and app runner expects that all traffic comes to default-domain.awsapprunner.com but I am not sure
What is the best way to fix this problem?
from flask import Flask, url_for, redirect
from waitress import serve
app = Flask(__name__)
#app.route("/hello")
def hello():
return "Hello"
#app.route("/redirect_to")
def redirect_to():
return "Redirected successfully!"
#app.route("/redirect_from")
def redirect_from():
return redirect("http://YOUR_APP_URL.com/redirect_to")
if __name__ == "__main__":
serve(app, host="0.0.0.0", port=8000)

how to use a variable to define a directory flask python3

I have this sample code below, when I try to go to / I get a 404 error, I am trying to use variables as app routes but with no luck
from flask import Flask
app = Flask(__name__)
index_dir = "/"
app.route(index_dir)
def index():
return "hello_world"
if __name__ == '__main__':
app.run(host="0.0.0.0")
Any idea on how to make python3 variables to directories
You have skipped the decorator symbol (#) before app.route(index_dir). It should be like this to work:
from flask import Flask
app = Flask(__name__)
index_dir = "/"
#app.route(index_dir)
def index():
return "hello_world"
if __name__ == '__main__':
app.run(host="0.0.0.0")

python code doesn't work when I segregate into packages | works fine in same file

I am trying to build some restful API's. When I try to segregate code into packages the service doesn't work and I get URL not found on the server. For examples:
Scenario 1 [Works fine as I have everything in main.py]
from flask import Flask, jsonify, request
app = Flask(__name__)
#app.route('/echo', methods=['POST'])
def echo():
message = request.get_json().get('message', '')
return jsonify({'message': message})
if __name__ == '__main__':
app.run(host='127.0.0.1', port=8080, debug=True)
Now when I try to segregate the code into different packages, it just doesn't work. For example:
Scenario 2 [Doesn't work as the code is in different packages]
I am initializing the app in api/restful.py
from flask import Flask, jsonify, request
app = Flask(__name__)
Then created a service in api/endpoints/service.py
from api.restplus import app, jsonify, request
#app.route('/echo', methods=['POST'])
def echo():
message = request.get_json().get('message', '')
return jsonify({'message': message})
Finally in main.py
from api.restplus import app
if __name__ == '__main__':
app.run(host='127.0.0.1', port=8080, debug=True)
It seems like the service is not visible to the app when I put it in a different package. Please advise.
Assuming that the issue you get is that flask does not see your service it looks like nothing is importing your service code once you split your code.
Simply modify your main.py file to look like this to fix it:
from api.restplus import app
import api.endpoints.service
if __name__ == '__main__':
app.run(host='127.0.0.1', port=8080, debug=True)
Hope this helps !
You may want to do this way Or I would suggest, if there are less routes try to have everthing in one file.
from yourfile import app
if __name__ == '__main__':
app.run(host='127.0.0.1', port=8080, debug=True)
In yourfile.py
from flask import Flask, jsonify, request
app = Flask(__name__)
#app.route('/echo', methods=['POST'])
def echo():
message = request.get_json().get('message', '')
return jsonify({'message': message})

Built a new Flask app -- old one still showing in browser

I made the following file yesterday.
# import flask
from flask import Flask
from flask import render_template
from flask import request
app = Flask(__name__)
# create url & function mapping for root or /
#app.route('/')
def index():
return "Hello from Flask"
# create another mapping name /hello
#app.route('/hello')
def hello():
myName = "kayak"
return "Hello again !!" + myName
# create mapping for /myprofile
#app.route('/myprofile')
def showmyprofile():
return render_template('myprofile.html')
# create mapping for /myprofile
#app.route('/addprofileform')
def addprofileform():
return render_template('myprofileform.html')
# create a mapping for /addprofile
#app.route('/addprofile')
def addprofile():
myname = request.args.get('myname')
state_of_residence = request.args.get('state_of_residence')
return render_template('myprofile.html', html_page_name=myname,
html_page_state_of_residence=state_of_residence)
if __name__== '__main__':
app.run()
Then I made the following file today.
from flask import Flask
app = Flask(__name__)
#app.route('/')
def index():
return 'This is the homepage'
if __name__ == "__main__":
app.run(debug=True)
I thought
app.run(debug=True)
would work to clear the old data, but I doesn't and http://127.0.0.1:5000/ page keeps showing "Hello from Flask".
How do I fix this?
Just clear the cache in your browser and try running it again.
Here's how to clear your cache in some browsers:
Firefix->https://support.mozilla.org/en-US/kb/how-clear-firefox-cache
Chrome->https://support.google.com/accounts/answer/32050?co=GENIE.Platform%3DDesktop&hl=en
You can export the FLASK_ENV environment variable and set it to development before running the server
export FLASK_ENV=development
flask run
This worked for me.
Running the program in incognito tab will not cause this error. No need to clear caches also. See https://support.google.com/chrome/answer/95464?co=GENIE.Platform%3DAndroid&hl=en

Categories

Resources