My Python server has internal errors since I use static route











up vote
-1
down vote

favorite












I'm trying to run my server who display index.html using static route. I use static route to link the CSS and JavaScript to my HTML page. For an unkown reason I have a internal server error but the strange thing is that this server was working 5min ago.



from flask import Flask, render_template, request, redirect, url_for, send_from_directory
import socket, json


# create Flask apps
app = Flask(__name__, static_url_path='.')

@app.route('/')
def root():
return app.send_static_file('index.html')

@app.route('/static/<path:path>')
def send_static(path):
return send_from_directory('static', path)

if __name__ == "__main__":
app.run()


My files tree is like this :



x/index.html
x/server.py
x/static/css/y.css
x/static/js/yy.js









share|improve this question






















  • What problem are you trying to solve by doing your own static file handling? That code partially duplicates what Flask will do automatically.
    – Dave W. Smith
    Nov 14 at 18:16















up vote
-1
down vote

favorite












I'm trying to run my server who display index.html using static route. I use static route to link the CSS and JavaScript to my HTML page. For an unkown reason I have a internal server error but the strange thing is that this server was working 5min ago.



from flask import Flask, render_template, request, redirect, url_for, send_from_directory
import socket, json


# create Flask apps
app = Flask(__name__, static_url_path='.')

@app.route('/')
def root():
return app.send_static_file('index.html')

@app.route('/static/<path:path>')
def send_static(path):
return send_from_directory('static', path)

if __name__ == "__main__":
app.run()


My files tree is like this :



x/index.html
x/server.py
x/static/css/y.css
x/static/js/yy.js









share|improve this question






















  • What problem are you trying to solve by doing your own static file handling? That code partially duplicates what Flask will do automatically.
    – Dave W. Smith
    Nov 14 at 18:16













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I'm trying to run my server who display index.html using static route. I use static route to link the CSS and JavaScript to my HTML page. For an unkown reason I have a internal server error but the strange thing is that this server was working 5min ago.



from flask import Flask, render_template, request, redirect, url_for, send_from_directory
import socket, json


# create Flask apps
app = Flask(__name__, static_url_path='.')

@app.route('/')
def root():
return app.send_static_file('index.html')

@app.route('/static/<path:path>')
def send_static(path):
return send_from_directory('static', path)

if __name__ == "__main__":
app.run()


My files tree is like this :



x/index.html
x/server.py
x/static/css/y.css
x/static/js/yy.js









share|improve this question













I'm trying to run my server who display index.html using static route. I use static route to link the CSS and JavaScript to my HTML page. For an unkown reason I have a internal server error but the strange thing is that this server was working 5min ago.



from flask import Flask, render_template, request, redirect, url_for, send_from_directory
import socket, json


# create Flask apps
app = Flask(__name__, static_url_path='.')

@app.route('/')
def root():
return app.send_static_file('index.html')

@app.route('/static/<path:path>')
def send_static(path):
return send_from_directory('static', path)

if __name__ == "__main__":
app.run()


My files tree is like this :



x/index.html
x/server.py
x/static/css/y.css
x/static/js/yy.js






python flask server static






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 14 at 17:25









Arnaud

11




11












  • What problem are you trying to solve by doing your own static file handling? That code partially duplicates what Flask will do automatically.
    – Dave W. Smith
    Nov 14 at 18:16


















  • What problem are you trying to solve by doing your own static file handling? That code partially duplicates what Flask will do automatically.
    – Dave W. Smith
    Nov 14 at 18:16
















What problem are you trying to solve by doing your own static file handling? That code partially duplicates what Flask will do automatically.
– Dave W. Smith
Nov 14 at 18:16




What problem are you trying to solve by doing your own static file handling? That code partially duplicates what Flask will do automatically.
– Dave W. Smith
Nov 14 at 18:16

















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%2f53305693%2fmy-python-server-has-internal-errors-since-i-use-static-route%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




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53305693%2fmy-python-server-has-internal-errors-since-i-use-static-route%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

How to change which sound is reproduced for terminal bell?

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

Can I use Tabulator js library in my java Spring + Thymeleaf project?