Configuring WSGI (flask factory) with PythonAnywhere












0















I'm having issues with deploying a Flask Application with WSGI and PythonAnywhere. I assume I have done something wrong but I wasn't able to find exactly what I did do wrong.



Here's my WSGI config file



import sys
# add your project directory to the sys.path
project_home = u'/home/{redacted}/src'
if project_home not in sys.path:
sys.path = [project_home] + sys.path
from start import run as application


Here's start.py



from bin import app
run = app.register().run()


Although if I try it this way it still does not work



from bin import app
run = app.register()


And here's what I'm doing in bin/main.py



class Application():
# Some required code redacted, although not necessary for this example
def __init__(self):
self.app = Flask(__name__, instance_relative_config=True)
def register(self):
""" Starts Flask App """
try:
self.configure_app()
self.register_blueprints()
except Exception as e:
print(f"Error configuring Application: {e}")
return self.app
app = Application()


Just in case you're interested, here's how it's imported through bin/__ init __.py



from .main import app


I do understand that the method in which I am doing this is over complicating it a little bit, and that I could get it working with a more normal method. Although I want it done this way and I'm fairly sure it can work this way, because the example I've shown 100% works on my machine.



Help is very appreciated. I am 100% aware I am doing something wrong here I just need help figuring out what it is.










share|improve this question























  • Look in your error and server logs for tracebacks that you can use to start debugging.

    – Glenn
    Jan 2 at 17:52
















0















I'm having issues with deploying a Flask Application with WSGI and PythonAnywhere. I assume I have done something wrong but I wasn't able to find exactly what I did do wrong.



Here's my WSGI config file



import sys
# add your project directory to the sys.path
project_home = u'/home/{redacted}/src'
if project_home not in sys.path:
sys.path = [project_home] + sys.path
from start import run as application


Here's start.py



from bin import app
run = app.register().run()


Although if I try it this way it still does not work



from bin import app
run = app.register()


And here's what I'm doing in bin/main.py



class Application():
# Some required code redacted, although not necessary for this example
def __init__(self):
self.app = Flask(__name__, instance_relative_config=True)
def register(self):
""" Starts Flask App """
try:
self.configure_app()
self.register_blueprints()
except Exception as e:
print(f"Error configuring Application: {e}")
return self.app
app = Application()


Just in case you're interested, here's how it's imported through bin/__ init __.py



from .main import app


I do understand that the method in which I am doing this is over complicating it a little bit, and that I could get it working with a more normal method. Although I want it done this way and I'm fairly sure it can work this way, because the example I've shown 100% works on my machine.



Help is very appreciated. I am 100% aware I am doing something wrong here I just need help figuring out what it is.










share|improve this question























  • Look in your error and server logs for tracebacks that you can use to start debugging.

    – Glenn
    Jan 2 at 17:52














0












0








0








I'm having issues with deploying a Flask Application with WSGI and PythonAnywhere. I assume I have done something wrong but I wasn't able to find exactly what I did do wrong.



Here's my WSGI config file



import sys
# add your project directory to the sys.path
project_home = u'/home/{redacted}/src'
if project_home not in sys.path:
sys.path = [project_home] + sys.path
from start import run as application


Here's start.py



from bin import app
run = app.register().run()


Although if I try it this way it still does not work



from bin import app
run = app.register()


And here's what I'm doing in bin/main.py



class Application():
# Some required code redacted, although not necessary for this example
def __init__(self):
self.app = Flask(__name__, instance_relative_config=True)
def register(self):
""" Starts Flask App """
try:
self.configure_app()
self.register_blueprints()
except Exception as e:
print(f"Error configuring Application: {e}")
return self.app
app = Application()


Just in case you're interested, here's how it's imported through bin/__ init __.py



from .main import app


I do understand that the method in which I am doing this is over complicating it a little bit, and that I could get it working with a more normal method. Although I want it done this way and I'm fairly sure it can work this way, because the example I've shown 100% works on my machine.



Help is very appreciated. I am 100% aware I am doing something wrong here I just need help figuring out what it is.










share|improve this question














I'm having issues with deploying a Flask Application with WSGI and PythonAnywhere. I assume I have done something wrong but I wasn't able to find exactly what I did do wrong.



Here's my WSGI config file



import sys
# add your project directory to the sys.path
project_home = u'/home/{redacted}/src'
if project_home not in sys.path:
sys.path = [project_home] + sys.path
from start import run as application


Here's start.py



from bin import app
run = app.register().run()


Although if I try it this way it still does not work



from bin import app
run = app.register()


And here's what I'm doing in bin/main.py



class Application():
# Some required code redacted, although not necessary for this example
def __init__(self):
self.app = Flask(__name__, instance_relative_config=True)
def register(self):
""" Starts Flask App """
try:
self.configure_app()
self.register_blueprints()
except Exception as e:
print(f"Error configuring Application: {e}")
return self.app
app = Application()


Just in case you're interested, here's how it's imported through bin/__ init __.py



from .main import app


I do understand that the method in which I am doing this is over complicating it a little bit, and that I could get it working with a more normal method. Although I want it done this way and I'm fairly sure it can work this way, because the example I've shown 100% works on my machine.



Help is very appreciated. I am 100% aware I am doing something wrong here I just need help figuring out what it is.







python flask wsgi pythonanywhere






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 1 at 4:01









JertyuJertyu

315




315













  • Look in your error and server logs for tracebacks that you can use to start debugging.

    – Glenn
    Jan 2 at 17:52



















  • Look in your error and server logs for tracebacks that you can use to start debugging.

    – Glenn
    Jan 2 at 17:52

















Look in your error and server logs for tracebacks that you can use to start debugging.

– Glenn
Jan 2 at 17:52





Look in your error and server logs for tracebacks that you can use to start debugging.

– Glenn
Jan 2 at 17:52












0






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',
autoActivateHeartbeat: false,
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%2f53992926%2fconfiguring-wsgi-flask-factory-with-pythonanywhere%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53992926%2fconfiguring-wsgi-flask-factory-with-pythonanywhere%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

Monofisismo

Angular Downloading a file using contenturl with Basic Authentication

Olmecas