👉 Join my Python Newsletter ~ www.thenerdnook.io 👉Join our Discord Community ~ discord.gg/dvrcpXSwyc 👉Get my Python Courses, Free ~ zerotoknowing.gumroad.com
@ultimatesound85159 ай бұрын
Good stuff bro ✌🏼
@codewithjoshoffical9 ай бұрын
Glad you got value!
@JacoBluezz9 ай бұрын
Hey I appreciate all the content you're putting out, there's not enough hours in the day to catch up lol I've never deployed a python app, but I've used other cloud services to deploy react apps. Have you ever deployed with azure or aws and would that be possible for a future video?
@codewithjoshoffical9 ай бұрын
Thank you! Definitely something I can look into!
@jaysonreyes31699 ай бұрын
Thank you for all the content, Josh! Really appreciate it…
@jerodrumney212312 күн бұрын
Thank you for this! The only thing is that I'm new to programming and I didn't make a requirements file. When you mentioned that we should have it, after already importing the clone from github, I had to scramble to find out what to do. Other than that, this helped me a lot. Thank you!
@codewithjoshoffical12 күн бұрын
Learning new things on the go 😉. I’m glad you got value!
@jerodrumney212311 күн бұрын
@@codewithjoshoffical Thank you! Yeah haha, I think just jumping into things is the best way I learn. This is my first real world application of using python after my first class!
@Pinkman30003 ай бұрын
Great series bro! Thank you 😎
@codewithjoshoffical3 ай бұрын
Absolutely 💯. Thanks for being here!
@cirodirosa67528 ай бұрын
thank you!.. .. i'm new and this worked fantastically!
@codewithjoshoffical8 ай бұрын
I’m glad you found it helpful!
@oliviergm78088 ай бұрын
does it work for an app that has to constantly storage files in a 'output/' folder?, it gives me an internal error every time i do the request for that, any solution?
@SteventheFitNomad2 ай бұрын
Hey Josh, one quick question. What would be the best way to deploy a simple web app where I simply collect information from people (name, email, phone) and store it in a database where I can later on export the file in CSV format?
@codewithjoshoffical2 ай бұрын
Hey there! So two options come to mind. One is PythonAywhere, this is free but if you want your own custom domain then it's $5, Then you have heroic which starts at $5. Heroku is better in my opinion but for free and the type of app you are talking about PythonAywhere will do the trick for a free 3 months.
@diegopassosdossantos59645 ай бұрын
Great content!
@codewithjoshoffical5 ай бұрын
Thanks! Glad you’re enjoying it, sub for more if you’re not already 😉
@JSreelakshmi-l2tАй бұрын
hey bro im getting disk issue while installing requirements.txt ... is there any other way to compress my code and deploy it like zip ?
@abdullahmehmood-zu5xoАй бұрын
Sir This is error : ModuleNotFoundError: No module named 'flask_app' how can I fix it please reply
@kimollivierАй бұрын
So the pcanywhere Flask button to automate doesn't work?
@wimvangeyt38664 ай бұрын
Hi, i get an error in the bash console when i try to run the clone command with the https url, it asks me for user and password of my Github account. And after providing those it states this: emote: Support for password authentication was removed on August 13, 2021. Well also i try to clone from a private repository. Maybe it's becaus the repository is private?
@ularkadutdotnet9 ай бұрын
awesome josh
@codewithjoshoffical9 ай бұрын
Thanks!
@idodahari64627 ай бұрын
I have my own db using sqlite3. from this db the app takes information. the app is running ok but everytime that I click on button that take information from the db it fails. I see that error in the log - pandas.errors.DatabaseError: Execution failed on sql 'SELECT * FROM names': no such table: names. what seems the problem and what is the solution?
@MuhamadAzizPrasetyo6 ай бұрын
Thank u so much ☺☺
@codewithjoshoffical6 ай бұрын
Absolutely! Glad you found it helpful 👍
@mickpick46787 ай бұрын
Thanks!
@WebDeveloper6824 ай бұрын
Hey josh, i have this error, what should i do? Something went wrong :-( Something went wrong while trying to load this website; please try again later. If it is your site, you should check your logs to determine what the problem is.
@codewithjoshoffical4 ай бұрын
What website are you referring to?
@eriktorres60675 ай бұрын
I can't find the commands on your site? Thanks
@codewithjoshoffical5 ай бұрын
When you subscribe you get a welcome email, in the welcome email is a bunch of free resources I’ve put together for you guys. It’s in there
@RokMigration8 ай бұрын
hey bro got this error when tried to run flaskapp> Traceback (most recent call last): File "/home/toomyshelby12/mysite/flask_app.py", line 2, in from flask_cors import CORS ModuleNotFoundError: No module named 'flask_cors' >>> pip install flask_cors File "", line 1 pip install flask_cors ^^^^^^^ SyntaxError: invalid syntax >>>
@codewithjoshoffical8 ай бұрын
pip install Flask-Cors Try this instead, each module/framework is a bit different for pip