i freaking love u guy, yesterday around 12 noon i started to look on how to deploy my website, after a whole day of searching finally found a video that was in actual a blessing for me, going to show my school project tomorrow, bless me luck, and yes a big thank you sir.
You are amazing man. I built my python app and configured it to work with the Flask web frame work. I then followed your video tutorial of how to add a python app to pythonanywhere and it worked, Dude. My app worked. I thank you so much for helping me get my python app to the world. If any one cared to check it out, just send me a line, and I will text you the link.
Jesus Christ!! I've been looking for this simple explanation for two days! I was missing 1 little thing! Thank you so much, very very clear and concise!!! You're a lifesaver.
Thank you for this tutorial! Was looking around the internet trying to find an easy explanation and couldn't find one until this one. Now my app is running thanks to you
in the backend of my app I am using keras and pickle and when i do pickle.load() it says no module keras.src I havent faced this erroor while running on my local machine, how to solve it??
My API needs to conect to a local database. Is there a way to use it to connect my database, or I must deploy the API in a local server (which will give me a lot of work)?
Could you give some idea to avoid the below error, """con = pyodbc.connect(driver='{ODBC Driver 17 for SQL Server}',host='LENOVO\SQLEXPRESS',database='students',trusted_connection='tcon',user='root1 ',password='Password@MS').cursor() pyodbc.Error: ('01000', u"[01000] [unixODBC][Driver Manager]Can't open lib 'ODBC Driver 17 for SQL Server' : file not found (0) (SQLDriverConnect)") """ When i execute the same code by installed app like notepad++, expected output getting.
Yes, PythonAnywhere supports uploading multiple files and folders, but the process depends on your account type. Here's how you can do it: For Free Accounts, you can only upload files one by one using the web interface. To upload multiple files or folders, you would need to: 1- Compress Your Files/Folders: Zip your folders and files on your local machine into a single .zip file. 2- Upload the Zip File: Use the "Files" tab on PythonAnywhere to upload the .zip file. 3- Unzip on PythonAnywhere: After uploading, you can use the "Bash" console on PythonAnywhere to unzip the file: unzip path/to/yourfile.zip
Hello, I think my website can't connect to the templates folder, since only the route without calling templates can work smooththly. What might happed?
So question, let say I want to add another section below the current one like "Meter to Decimeter Converter" and so on, any tip (approute POST method related) to follow beside just plainly do it like line by line in .html to keep all simple?
I'm getting a permissions error: PermissionError: [Errno 13] Permission denied: '/mnt/data' when trying to run my application. I don't know how to address it.
Hi @dennisking8281, A PermissionError: [Errno 13] Permission denied: '/mnt/data' typically occurs when your application does not have the necessary permissions to access a directory or file. On a platform like PythonAnywhere, this could happen if your code is trying to access a directory that your user account isn't allowed to access, or if you're trying to perform an operation that's not permitted. Here area few steps you can take to resolve this issue: 1- Check File Paths: Ensure that your code is using the correct file paths. On PythonAnywhere, you have a specific directory structure, and you should only write to your home directory (e.g., /home/YourUsername/) or to directories where your user has write permissions. 2- Check Permissions: On PythonAnywhere, you don't have permission to write to certain directories (like /mnt/data which is typical in a local environment). You need to modify your code to write to a directory where you have permissions. 3- Use the Correct Directory: Modify your Flask app's code to save files in a directory you have write access to. Typically, you can use a directory within your user's home directory (e.g., /home/YourUsername/myapp/data/).
i try to deploy my flask to pythonanywhere and it run smooth, but when i try to fetch and post api from my flask server, it blocked by cors, how do i bypass it?
To handle CORS in a Flask application, you can use the Flask-CORS extension, which makes it easy to add CORS headers to your responses. Here's how you can set it up: 1- Install Flask-CORS: First, make sure you install the Flask-CORS extension by running: pip install flask-cors If you're using a requirements.txt file for your PythonAnywhere app, add flask-cors to it. 2- Import and Initialize Flask-CORS: In your Flask application, import and initialize the CORS extension: from flask import Flask from flask_cors import CORS app = Flask(__name__) CORS(app) 3- Configure CORS: You can also configure CORS for specific routes or resources and set various options like allowing specific domains, headers, and methods: from flask_cors import cross_origin @app.route("/api/some_resource") @cross_origin() # This decorator allows CORS for all origins on this route def some_resource(): return jsonify(data="some data") 4- Deploy Changes: After making changes to your Flask application, don't forget to push these changes to PythonAnywhere and reload your web app for the changes to take effect. 5- Testing: Test the API endpoints from your front-end application to ensure that the CORS issue has been resolved.
"DearTeam, I wanted to express my heartfelt gratitude for the invaluable assistance your channel provided me with. Thanks to your informative content, I was able to Your dedication to sharing knowledge has truly made a difference in my life. Thank you immensely!"
My application takes a CSV file and displays the contents of the file. After hosting the webpage, I uploaded the file and clicked submit. But it shows this error message : "Internal Server Error" "The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application." What should happen is that when the user clicks submit button after uploading the csv file, the python app sends data back to the html file to populate the page with data from the csv file.
Someone help me how can I make database work as I put my database file into folder but when I try to put data inside it doesn't show in my table but when i run local server it shows data there as I m using Sqlite not mysql
When I deploy my project I get an error saying "ModuleNotFoundError: No module named 'camera'" So how to I import this module? Does anyone has any idea?
Try to install Modules which not found in your system using 'pip' command. Even if it will generate error then uninstall every thing and reinstall python in customize directory (c:/python/). and then again install modules using 'pip' command. It's my suggestion by personal experience.I have also faced these type of problems at initial stage. I hope it will help you :)
If you have .txt and .yaml files that you need to upload to PythonAnywhere, the process is similar to uploading any other type of file. Using the PythonAnywhere Web Interface: 1- Compress the Files: If you're on a free account and have multiple files, it's easier to compress them into a single .zip archive on your local machine. 2- Upload the Archive: Use the "Files" tab on PythonAnywhere to upload the .zip file. 3- Unzip the Files: Use a bash console on PythonAnywhere to unzip the files: unzip your-archive.zip
Very helpful video. I get an internal server error when I try to login to my website. The login page works when I run my flask app on my localhost. What could be the issue?
Wonderful video, but I am still behind of you. I have one big question, as you have cleared much of my logic in Hosting. Question: As I have multiple files, one Python file, One index.html file, other are libraries and one Font folder, how I can arrange all these to RUN my APP on Web? Thanks please, respond me as soon as possible. with many thanks, Subscribed already....
Sqlite3 stores data in a .db file. You work on that file locally, and then upload the file on PythonAnywhere along with the other files of your project.
@@pythonhow Ok, my understanding here is you mean I can upload my app.db file to the project directory on pythonanywhere just like it has been on my pc while I was running on localhost?
hi, first of all thank you so much for such a simple way to show to how to make a flask app live!!!!! I am absolutely new in learning React and built a simple search web app that is using Flask to search a database and return data to render via react again. My app is working fine in my local host and I am looking how I can deploy such app in internet using any of the free live server. I have been looking for a video that will server my need but everyone is talking in so high level, its hard to follow. can you help?? or anyone?? for a relevant tutorial ?? really stuck for over a week now!!
You got to create a template folder and create an index.html file in it, which includes your HTML form which in turn includes your input tags with input type and name or/ Id if that is what your app needs. Then you got to apply your Jinja2 variables or ginger statements if your app needs them. I can explain it to you if you send me a text message stating that you need help submitting data to your python app. The company number is 631-747-7237, the company name is Mstardom, Inc. and the website is mstardom.com .
i freaking love u guy, yesterday around 12 noon i started to look on how to deploy my website, after a whole day of searching finally found a video that was in actual a blessing for me, going to show my school project tomorrow, bless me luck, and yes a big thank you sir.
Thank you so much!!! I've been trying to deploy my flask app for a project and it took me 2 days to reach you!! Super Helpful and easy to follow.
You are amazing man. I built my python app and configured it to work with the Flask web frame work. I then followed your video tutorial of how to add a python app to pythonanywhere and it worked, Dude. My app worked. I thank you so much for helping me get my python app to the world. If any one cared to check it out, just send me a line, and I will text you the link.
I wanna see it
Hi. We can only deploy one app using free subscription?
Jesus Christ!! I've been looking for this simple explanation for two days! I was missing 1 little thing! Thank you so much, very very clear and concise!!! You're a lifesaver.
Thank you for this tutorial! Was looking around the internet trying to find an easy explanation and couldn't find one until this one. Now my app is running thanks to you
Hi Aaron, I am really happy that my video helped you to make your app run.
Keep on the good work,
Ardit
@@pythonhow thanks for the video.but you didn't tell how I use database
My app needs a lot of python libraries to run. How do I get a python virtual environment with all the modules in the python anywhere website?
the source code files are not available anymore
Thank you so much for how you have clearly explained how to upload a website for free. You really a very good teacher. 🎉🎉🎉🎉🎉
Man you are the best. faq in 3min i learned to deploy a flask hello world. man, thanks
Thank you, I have my app working now because of your video!
this vid is simple and precise you're a life saver!
Links in the description aren't working 😬
You sir has deserved a subscribe button
in the backend of my app I am using keras and pickle and when i do pickle.load() it says no module keras.src I havent faced this erroor while running on my local machine, how to solve it??
My API needs to conect to a local database. Is there a way to use it to connect my database, or I must deploy the API in a local server (which will give me a lot of work)?
it never works for me. I want to pu my chatbot using PythonAnywhere but there is always an error.
Could you give some idea to avoid the below error,
"""con = pyodbc.connect(driver='{ODBC Driver 17 for SQL Server}',host='LENOVO\SQLEXPRESS',database='students',trusted_connection='tcon',user='root1
',password='Password@MS').cursor()
pyodbc.Error: ('01000', u"[01000] [unixODBC][Driver Manager]Can't open lib 'ODBC Driver 17 for SQL Server' : file not found (0) (SQLDriverConnect)")
"""
When i execute the same code by installed app like notepad++, expected output getting.
Hi, there is any way to upload more folders or files at once in pythonanywhere?
Yes, PythonAnywhere supports uploading multiple files and folders, but the process depends on your account type. Here's how you can do it:
For Free Accounts, you can only upload files one by one using the web interface. To upload multiple files or folders, you would need to:
1- Compress Your Files/Folders:
Zip your folders and files on your local machine into a single .zip file.
2- Upload the Zip File:
Use the "Files" tab on PythonAnywhere to upload the .zip file.
3- Unzip on PythonAnywhere:
After uploading, you can use the "Bash" console on PythonAnywhere to unzip the file: unzip path/to/yourfile.zip
i have impoted sqlalchemy under my app so how did i mentioned it in my case
Nice tutorial man! And yes you really have a great voice 🔥
Hello, I think my website can't connect to the templates folder, since only the route without calling templates can work smooththly. What might happed?
and the requirements.txt file ? Shouldn't it be included in the deployed files?
Sir Plz help with the Connection of database with pymysql (library) ..
i will help u call me at 8789226053 if u want to connect with pysqlite3 or sql database
I have local csv files on computer which I did read in script, how can I give path to make ot usable for all
Much Thanks @pythonhow for this awesome Video.
Just a question Can you add another project within the same workspace?
We are soo luck to do all this for free! Ponder upon this, what if python was paid, what if you could only purchase a pythoneverywhere account?
thant you. but Is it necessary to have an index.html file?
Make tutorial for to deploy python flask web app but with selenium in it, I get error the hole time that dhey don't find my geckodriver
Are the source code files still available? I can't get the links to work.
So question, let say I want to add another section below the current one like "Meter to Decimeter Converter" and so on, any tip (approute POST method related) to follow beside just plainly do it like line by line in .html to keep all simple?
hell yeah this worked like a charm
bro i cant reach the websites , what did you do in backend file
Thank you so much! Very clear instructions in a quick format!
Great video! Straight to the point and very helpful
Thank you, But how make database connection sqlite3
I'm getting a permissions error: PermissionError: [Errno 13] Permission denied: '/mnt/data' when trying to run my application. I don't know how to address it.
Hi @dennisking8281, A PermissionError: [Errno 13] Permission denied: '/mnt/data' typically occurs when your application does not have the necessary permissions to access a directory or file. On a platform like PythonAnywhere, this could happen if your code is trying to access a directory that your user account isn't allowed to access, or if you're trying to perform an operation that's not permitted.
Here area few steps you can take to resolve this issue:
1- Check File Paths:
Ensure that your code is using the correct file paths. On PythonAnywhere, you have a specific directory structure, and you should only write to your home directory (e.g., /home/YourUsername/) or to directories where your user has write permissions.
2- Check Permissions:
On PythonAnywhere, you don't have permission to write to certain directories (like /mnt/data which is typical in a local environment). You need to modify your code to write to a directory where you have permissions.
3- Use the Correct Directory:
Modify your Flask app's code to save files in a directory you have write access to. Typically, you can use a directory within your user's home directory (e.g., /home/YourUsername/myapp/data/).
I have one doubt please reply , If i want to install any module there then ? Like pyrebase
May you please provide details on the backend.py file?
Comment je peux afficher les fichiers .css
i try to deploy my flask to pythonanywhere and it run smooth, but when i try to fetch and post api from my flask server, it blocked by cors, how do i bypass it?
To handle CORS in a Flask application, you can use the Flask-CORS extension, which makes it easy to add CORS headers to your responses. Here's how you can set it up:
1- Install Flask-CORS:
First, make sure you install the Flask-CORS extension by running: pip install flask-cors
If you're using a requirements.txt file for your PythonAnywhere app, add flask-cors to it.
2- Import and Initialize Flask-CORS:
In your Flask application, import and initialize the CORS extension:
from flask import Flask
from flask_cors import CORS
app = Flask(__name__)
CORS(app)
3- Configure CORS:
You can also configure CORS for specific routes or resources and set various options like allowing specific domains, headers, and methods:
from flask_cors import cross_origin
@app.route("/api/some_resource")
@cross_origin() # This decorator allows CORS for all origins on this route
def some_resource():
return jsonify(data="some data")
4- Deploy Changes:
After making changes to your Flask application, don't forget to push these changes to PythonAnywhere and reload your web app for the changes to take effect.
5- Testing:
Test the API endpoints from your front-end application to ensure that the CORS issue has been resolved.
Not able to access the code! Can you share it across! Thanks
"DearTeam, I wanted to express my heartfelt gratitude for the invaluable assistance your channel provided me with. Thanks to your informative content, I was able to Your dedication to sharing knowledge has truly made a difference in my life. Thank you immensely!"
the html and css code works but python code dosn't works.
please anyone help me, i relly nead help.
How do you pip install stuff?
What if I've got javascript file?
Hey Ardit, Thanks for posting so much knowledge! I wonder why you aren't posting anymore. Its been 2 years.
I have error with app.py in sql server driver
How it works with sql server?
Wow simple instructions, thanks for the guidance!
Hi, thanks for the video . I have a question, i used lots of libraries in app.py . Is that a problem? Does pythonanywhere install all of it by itself?
i mean i had to pip install them to import inside the code, what do i do to make it work fine when i deploy the code?
hey man, did u found the solution?
You should use bash console to pip install the libraries you used
My application takes a CSV file and displays the contents of the file. After hosting the webpage, I uploaded the file and clicked submit. But it shows this error message :
"Internal Server Error"
"The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application."
What should happen is that when the user clicks submit button after uploading the csv file, the python app sends data back to the html file to populate the page with data from the csv file.
masla solved or i shld help?
thanks a lot, may God bless you dude, again thanks a lot. I need this!!
Someone help me how can I make database work as I put my database file into folder but when I try to put data inside it doesn't show in my table but when i run local server it shows data there as I m using Sqlite not mysql
call me at 8789226053 i will help u
I have pickle file also,where should I upload the pickle file
When I deploy my project I get an error saying "ModuleNotFoundError: No module named 'camera'" So how to I import this module? Does anyone has any idea?
Go to Consoles, create a bash console, and enter command "pip3 install camera --user"
I have a simple single file mydata.py which has main method and while loop n I want to deploy it on webjob how to do it any link?
How to upload a file which is more than 100mb??
Thank you soooooo much, Godblessyou, awesome work
but what about static files how to get design on live server. pls if anyone have any idea pls pls comment. I will be highly grateful
i am getting module not found error for all the python libraries instead they are installed what to do
Try to install Modules which not found in your system using 'pip' command.
Even if it will generate error then uninstall every thing and reinstall python in customize directory (c:/python/).
and then again install modules using 'pip' command.
It's my suggestion by personal experience.I have also faced these
type of problems at initial stage.
I hope it will help you :)
what about dependencies
what if i have a txt and yaml file instead of an html file?
If you have .txt and .yaml files that you need to upload to PythonAnywhere, the process is similar to uploading any other type of file. Using the PythonAnywhere Web Interface:
1- Compress the Files:
If you're on a free account and have multiple files, it's easier to compress them into a single .zip archive on your local machine.
2- Upload the Archive:
Use the "Files" tab on PythonAnywhere to upload the .zip file.
3- Unzip the Files:
Use a bash console on PythonAnywhere to unzip the files:
unzip your-archive.zip
can you please help me to post data from postman in a flask app on pythonanywhere
how to connect database
Great video, mate! I really got a lot out of it.
Thank you for Tutorial !!!!!! Help me a lot . i will lokk for you in UDEMY
simply awesome explanation
can I follow the way to deploy my dash app?
The files are not opening.
Very helpful video. I get an internal server error when I try to login to my website. The login page works when I run my flask app on my localhost. What could be the issue?
Thanks for such a simple and nice video
How to push 25-30 files in a folder in one go...here I can upload one file at a time
Zip it and then upload
Really helpful, thanks!
It was very helpful, but something went wrong, could not figure out what
Thank u so much bro. I need to this type video.
Any suggestion on how to install a Python script on a cPanel hosting? I want to install Quillpad.com script on to one of my domain. Please suggest.
thanks so much! super simple and works!
what is this backend.py? is it mandatory?
Have you trained ChatGpt
Sir please tell how to enable https ?
Wonderful video, but I am still behind of you.
I have one big question, as you have cleared much of my logic in Hosting.
Question:
As I have multiple files, one Python file, One index.html file, other are libraries and one Font folder, how I can arrange all these to RUN my APP on Web?
Thanks
please, respond me as soon as possible.
with many thanks,
Subscribed already....
You can include the libraries in a requirements.txt file and upload that file to the web server.
Hey this was helpful, thanks! How would alter the flask app to have multiple input boxes that route to different functions?
Thanks a lot Sir
Thank Thank so much for this. How do I plug in my sqlite3 with this method?
Sqlite3 stores data in a .db file. You work on that file locally, and then upload the file on PythonAnywhere along with the other files of your project.
@@pythonhow
Ok, my understanding here is you mean I can upload my app.db file to the project directory on pythonanywhere just like it has been on my pc while I was running on localhost?
@@unubiopaluwa Exactly! It is just a file like all others.
@@pythonhow
Thank you so much
very helpful perfect & clear!
What if I want to upload on my own website....
Say for example : www.pythontest.com
How do I upload here?
How to share project with database
I want to deploy database
Thanks!
great video
Thank you
hi, first of all thank you so much for such a simple way to show to how to make a flask app live!!!!! I am absolutely new in learning React and built a simple search web app that is using Flask to search a database and return data to render via react again. My app is working fine in my local host and I am looking how I can deploy such app in internet using any of the free live server. I have been looking for a video that will server my need but everyone is talking in so high level, its hard to follow. can you help?? or anyone?? for a relevant tutorial ?? really stuck for over a week now!!
easy and simple !
Thank you sir
Thank for this vedio. how to receive data in this app please explain.
You got to create a template folder and create an index.html file in it, which includes your HTML form which in turn includes your input tags with input type and name or/ Id if that is what your app needs. Then you got to apply your Jinja2 variables or ginger statements if your app needs them. I can explain it to you if you send me a text message stating that you need help submitting data to your python app. The company number is 631-747-7237, the company name is Mstardom, Inc. and the website is mstardom.com .
THANK YOU
Nice but didn’t work for me
love you
thanks
thanks to u
감사합니다