Request not being executed











up vote
0
down vote

favorite












I'm trying to execute a request inside a route:



@app.route('/products')
@cross_origin(origin='*')
def get_products():
query = request.args.get('q')
# endpoint = endpoint_search.format(query)
endpoint = endpoint_search
res = requests.get(endpoint)
if res.status_code == 200:
json_search = res.json()
return json_search
else:
pass

if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', threaded=True)


But the server stays in idle until reach timeout. Why this is happening?










share|improve this question
























  • You are not returning anything in the else block. So if res.status_code == 201, then you don't actually do anything. You need to have a response for ALL branches of an if-else.
    – Jabari Dash
    Nov 21 at 17:35










  • @JabariDash the problem is that the request is never being triggered.
    – olegario
    Nov 21 at 17:48















up vote
0
down vote

favorite












I'm trying to execute a request inside a route:



@app.route('/products')
@cross_origin(origin='*')
def get_products():
query = request.args.get('q')
# endpoint = endpoint_search.format(query)
endpoint = endpoint_search
res = requests.get(endpoint)
if res.status_code == 200:
json_search = res.json()
return json_search
else:
pass

if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', threaded=True)


But the server stays in idle until reach timeout. Why this is happening?










share|improve this question
























  • You are not returning anything in the else block. So if res.status_code == 201, then you don't actually do anything. You need to have a response for ALL branches of an if-else.
    – Jabari Dash
    Nov 21 at 17:35










  • @JabariDash the problem is that the request is never being triggered.
    – olegario
    Nov 21 at 17:48













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm trying to execute a request inside a route:



@app.route('/products')
@cross_origin(origin='*')
def get_products():
query = request.args.get('q')
# endpoint = endpoint_search.format(query)
endpoint = endpoint_search
res = requests.get(endpoint)
if res.status_code == 200:
json_search = res.json()
return json_search
else:
pass

if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', threaded=True)


But the server stays in idle until reach timeout. Why this is happening?










share|improve this question















I'm trying to execute a request inside a route:



@app.route('/products')
@cross_origin(origin='*')
def get_products():
query = request.args.get('q')
# endpoint = endpoint_search.format(query)
endpoint = endpoint_search
res = requests.get(endpoint)
if res.status_code == 200:
json_search = res.json()
return json_search
else:
pass

if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', threaded=True)


But the server stays in idle until reach timeout. Why this is happening?







python flask request






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 at 18:53









eyllanesc

68.6k93052




68.6k93052










asked Nov 21 at 17:33









olegario

147220




147220












  • You are not returning anything in the else block. So if res.status_code == 201, then you don't actually do anything. You need to have a response for ALL branches of an if-else.
    – Jabari Dash
    Nov 21 at 17:35










  • @JabariDash the problem is that the request is never being triggered.
    – olegario
    Nov 21 at 17:48


















  • You are not returning anything in the else block. So if res.status_code == 201, then you don't actually do anything. You need to have a response for ALL branches of an if-else.
    – Jabari Dash
    Nov 21 at 17:35










  • @JabariDash the problem is that the request is never being triggered.
    – olegario
    Nov 21 at 17:48
















You are not returning anything in the else block. So if res.status_code == 201, then you don't actually do anything. You need to have a response for ALL branches of an if-else.
– Jabari Dash
Nov 21 at 17:35




You are not returning anything in the else block. So if res.status_code == 201, then you don't actually do anything. You need to have a response for ALL branches of an if-else.
– Jabari Dash
Nov 21 at 17:35












@JabariDash the problem is that the request is never being triggered.
– olegario
Nov 21 at 17:48




@JabariDash the problem is that the request is never being triggered.
– olegario
Nov 21 at 17:48

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417684%2frequest-not-being-executed%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417684%2frequest-not-being-executed%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

What visual should I use to simply compare current year value vs last year in Power BI desktop

Alexandru Averescu

Trompette piccolo