For anyone interested, here's a zip file with Krydos' Flask example: https://kairion.helioho.st/flasktest.zip
Just download it and extract on httpdocs (Plesk's new account) or public_html (cPanel's transferred account), open flask.wsgi (which is inside the directory flasktest that'll be created when extracting the downloaded zip file) and find:
sys.path.append("/home/YOUR_DOMAIN_HERE/httpdocs/flasktest");
And change YOUR_DOMAIN_HERE with your actual domain, e.g.:
sys.path.append("/home/kairion.helioho.st/httpdocs/flasktest");
And then you can access your Flask example: https://kairion.helioho.st/flasktest/
@krsmith28p Here's a zip file with Krydos' Flask example adapted to run on web root (httpdocs for Plesk's new account or public_html for cPanel's transferred account): https://kairion.helioho.st/flasktest_on_webroot.zip
Just extract it on your web root (as indicated above), remove all index files that it may have (index.html, index.htm, index.php etc.), open the file flask.wsgi and find:
sys.path.append("/home/YOUR_DOMAIN_HERE/httpdocs");
And change YOUR_DOMAIN_HERE with your actual domain, e.g.:
sys.path.append("/home/kairion.helioho.st/httpdocs");
It will work the same way as Krydos' original example. You can read these three files and check the differences between them and Krydos' originals. It's actually really easy: I just found all references for "flasktest" (the directory we make in the original example) and removed them (or changed them to a simple "/").
I'm not a Python/Django/Flask expert, but feel free to ask any questions and if I can help, I'll be glad to.