@@ExploitGodzdepends on a number of factors. Do you already know the general programming concepts and even another language? How often do you use python, how complex are you getting when using the language? Overall it just takes time, you’ll get good eventually 😊.
I’ve been waiting so long for his videos and then when I found out it his disappearance was bc of his personal health issues, I have to say - the GOAT IS BACK!! I legit learned how to program Python from his channel. Anyone who is new here, you’re in good hands. Personally, this type of content doesn’t matter to me anymore but going back to the beginning of the learning process I can say without a doubt he’s the GOAT.
great to see you back...made a career from previous videos....the entire pandas series shot up my data science career and has enabled me start and run my company...kudos corey
i started my programming with you and you are still the best teacher, your code is very simple to read but very clean. i wish someday i can write like you my friend
It all depends on the specifics of your production environment. If you're operating on a dedicated server for a specific application, you can directly set the environment variables there. Similarly, if you're using containerization solutions like Docker, environment variables can be defined within your Docker configurations. Platforms like AWS and Azure provide their own methods for secure environment management. The short answer is: 'It depends.' I've personally used DotEnv for smaller or personal projects without any issues, and it's exceptionally useful for local development. However, it is true that there are more secure and scalable options available for more complex systems. It all depends on your needs.
@@coreyms request python tutorial 2024 for beginners to experts. Python has been updated 8 years ago. There are definitely lots of changes and lots of tricks to master. please give us all the learning about python from beginning to expert.
I already knew about .env and stuff, but I still watched this video because I started learning Python from you and I was expecting something new to learn from this video, that's where I found variable expansion. I was already aware of variable expansion concepts, but I didn't know that it can be used in .env file. I'll always be thankful to you, because I started learning from this channel and today I'm a Software Engineer.
Managing passwords and API keys securely is crucial, and DotEnv seems like the perfect solution. Thanks for breaking it down step by step - we are sure it will be useful for many users!
Your videos ignited my passion for Python! Thank you immensely for sharing your knowledge. Please keep them coming; they're invaluable. Sending heaps of love from India!"
Waiting for future tutorials, that you promised in this video - liked that part most of all. Variable expansion was very new to me. Please do more videos. You are one of the best! Thank you!
Good to see you back again 🙂, few days back i was trying to find ways to store db username and password in a secured way , your tutorial came just in right time for me, thanks a lot
Good to see you upload video after so long. Are you running out of video ideas? here are some suggestions if you consider making videos on it. 1. Advanced Type Hinting (like complex ones) 2. Few End-to-end production level Project (share what actual production level code is like, dos, and don'ts) 3. How to negotiate salary(Advance)
Hi Corey, I'm so happy you're back. I was able to learn Python because of you. Can you please do a Django Rest Framework if you have time? Gob bless people like you who wants to impart their knowledge for free.
Glad your back Corey Sir 👏. Can you plz make any new Python Series on like Machine learning/Deep learning/Data Engineer/Data Analytics etc. In that case anything new that you learned in these days.
Corey, thanks for another great video. I don't know if you'll ever see this, but in case you do: I think you are using a Python formatter in this video; a tutorial about that would be great. Thanks :)
You are not the only one to get this error. I spent entire night trying to figure out what was going wrong, until I even printed out the environment variables...😮💨
Hi Corey, I absolutely love your content on python as it's very informative, glad to see you doing tutorials again. Though I do have a question, after going through the beginner python playlist and OOP python playlist, I just see a lot of python explaination videos floating around and don't know what order I should pick them up in, any reccomendations?
Does this physically add the environment variable into the system environment variable list? What i mean by that, after i added it once, i can delete the .env file since it is now stored by the system.
Great question! When you use python-dotenv, it loads environment variables into the environment of the Python process where it’s called. This means the variables are only accessible within that specific process and do not affect or appear in the system environment or any other processes. For example, if you set an API key using python-dotenv in your Python script, that API key will be available throughout the execution of your script, but once the script finishes, the API key disappears from the environment; it won’t be accessible from other scripts or applications. Additionally, these variables are not set system-wide. This is an important security feature as it prevents sensitive data from being accessible beyond the intended scope. This process-specific loading ensures that other applications will not see the environment variables set by python-dotenv. Each process would need to load its .env file independently.
@@coreyms what about using a /etc/config.json file if you are running an apache web server, witch is a better way? i learned that from your django series to hide sensitive information
Sublime may still be making an appearance if I can get a few things figured out. A lot of the packages I used on there haven’t been maintained and have broken with updates to either Sublime or Python. I still wish I could get VS Code to my minimalist liking for recordings. I think I can, but still a little ways to go
can somebody tell about the permissions we set to that file imagine doing in this in linux what perms shall i set for the .env file nice tutorial thank you
The legend is back 🙌. I learned everything I know about Python from you ~6 years ago.
i concur outrightly... This legend kept dishing out knowledge in python like the Nigerian jollof... Welcome back LEGEND...
Has it been like 12 years? You know you basically taught me a whole lot of python of the years....
im new to python how long it took u to be fluent at it
@@ExploitGodzdepends on a number of factors. Do you already know the general programming concepts and even another language? How often do you use python, how complex are you getting when using the language? Overall it just takes time, you’ll get good eventually 😊.
I learnt 90% of python stuff thanks to your videos, it is awesome to see you back!
Been using dotenv for a while now snd i still managed to learn something new, Corey you're a legend!!
God is back
Lol wtf 😂😂
Gos is god
😂😂
I’ve been waiting so long for his videos and then when I found out it his disappearance was bc of his personal health issues, I have to say - the GOAT IS BACK!! I legit learned how to program Python from his channel. Anyone who is new here, you’re in good hands. Personally, this type of content doesn’t matter to me anymore but going back to the beginning of the learning process I can say without a doubt he’s the GOAT.
Wrong address
great to see you back...made a career from previous videos....the entire pandas series shot up my data science career and has enabled me start and run my company...kudos corey
Wake up babe, Corey Schafer just dropped another banger tutorial
Everything I know about flask and django, I learnt from the legend himself Corey Schafer.
Thanks a lot for all you do
i started my programming with you and you are still the best teacher, your code is very simple to read but very clean. i wish someday i can write like you my friend
Never clicked a video faster, love the tutorials Corey! I'm assuming dotenv is not recommended for production?
It all depends on the specifics of your production environment. If you're operating on a dedicated server for a specific application, you can directly set the environment variables there. Similarly, if you're using containerization solutions like Docker, environment variables can be defined within your Docker configurations. Platforms like AWS and Azure provide their own methods for secure environment management.
The short answer is: 'It depends.' I've personally used DotEnv for smaller or personal projects without any issues, and it's exceptionally useful for local development. However, it is true that there are more secure and scalable options available for more complex systems. It all depends on your needs.
@@coreyms request python tutorial 2024 for beginners to experts. Python has been updated 8 years ago. There are definitely lots of changes and lots of tricks to master. please give us all the learning about python from beginning to expert.
I already knew about .env and stuff, but I still watched this video because I started learning Python from you and I was expecting something new to learn from this video, that's where I found variable expansion. I was already aware of variable expansion concepts, but I didn't know that it can be used in .env file.
I'll always be thankful to you, because I started learning from this channel and today I'm a Software Engineer.
Thanks, God bless you
Thanks!
Managing passwords and API keys securely is crucial, and DotEnv seems like the perfect solution. Thanks for breaking it down step by step - we are sure it will be useful for many users!
So great to see you back, Corey. You are an amazing teacher
Welcome back.. You are one reason to get a job in IT world... Please make more Video...
Glad to see you’re back Corey
u r the reason why i have started programming , u r my god , glad to see you back
Just finished your django series Corey! And waking upto your notification made my day.
Good to see you back! Would love to see videos on the latest Python advanced features in future.
The man, the Legend!
Thank you for all your contribution to the Python community, Sir!
❤❤❤
I knew all this but watched nonetheless because Corey taught me codeing years ago and I was nostalgic haha
Your videos ignited my passion for Python! Thank you immensely for sharing your knowledge. Please keep them coming; they're invaluable. Sending heaps of love from India!"
Welcome Back Corey. Everything i know in python is from you
Waiting for future tutorials, that you promised in this video - liked that part most of all. Variable expansion was very new to me. Please do more videos. You are one of the best! Thank you!
You are the No1 instructor. The Legend
Man it felt so good hearing your voice again. Hope you stay in the best of health and keep blessing us with such content.:)
Have been using this already, just wanted to watch a new video by Corey anyways. And as expected, I did learn some new things! Thanks as always!
Good to see you back again 🙂, few days back i was trying to find ways to store db username and password in a secured way , your tutorial came just in right time for me, thanks a lot
Finally, you have another new video sir. Your videos are the best.
I am so glad to see you back!! Wishing you a healthy and happy life.
I'm doing mt final project based in django than I've learned from you. Welcome back legend.! :D
THE GOAT IS BACK. HE HAS COOKED.
You are back I was looking for you for a long time and I want to thank you for the awesome work
This is my Python course guy. There are many like it, but this one is mine.
finally corey remember his password.
Glad you're back. You have the potential to have millions of followers and earn thousands of dollars. Don't know why you don't go for it.
Corey, thanks for another great tutorial. It’s been way too long!
It's been a long time since your last upload, glad you're back Corey!
Great that you are back, hope your health is great
That’s what I’m talking about. It makes my day to see you back bro 🤘🏼
welcome back Corey! missed your uploads :D
Python legend is back
Great to see you back with the videos, requesting you to make a playlist for fastapi
I use the standard module configparser for this purpose; it does practically the same without having to install additional dependencies.
I just watched a tutorial which I hadn’t been doing for years. But I couldn’t say no to Corey’s vdos
Happy to see you back!
Happy to see you back,,, please make videos on python automation sir
Hey Corey we all love the way you teach that's why I request you to make a playlist about math for data science
Great to have you back, Corey!
Great content as always. Thank you Corey!
Let's keep the momentum 🔥
the man I owe my job to is back!
Good to see you upload video after so long. Are you running out of video ideas? here are some suggestions if you consider making videos on it. 1. Advanced Type Hinting (like complex ones) 2. Few End-to-end production level Project (share what actual production level code is like, dos, and don'ts) 3. How to negotiate salary(Advance)
So glad to see you making videos again!
Hi Corey, I'm so happy you're back. I was able to learn Python because of you. Can you please do a Django Rest Framework if you have time? Gob bless people like you who wants to impart their knowledge for free.
THE LEGEND IS HERE ONCE AGAIN
Welcome back, missed your voice!
Great video! Excited for the next one! Thank you for all you've done!
The legend is back!
Wake up babe! Corey just dropped a video after 12 years
Ohh Man..!!! Thanks God, you are alive.❤
Welcome Back in Action Corey MS
The King is backkkkkkkkk what a time
I hope you are better. Take care and I'll enjoy this video.
Look who’s back ❤❤❤
Glad your back Corey Sir 👏. Can you plz make any new Python Series on like Machine learning/Deep learning/Data Engineer/Data Analytics etc. In that case anything new that you learned in these days.
The return of the king ...
Good to have you back :)
Man glad you're back!
Corey, thanks for another great video. I don't know if you'll ever see this, but in case you do: I think you are using a Python formatter in this video; a tutorial about that would be great. Thanks :)
Welcome Back , Corey❤
Wooow..... 🎉🎉🎉🎉🎉 Happy to see you are back....😂
Great video as old times! :-)
Thanks Corey! Learned a lot from you videos!
So glad to see you back !!
The man the myth the legend! Welcome back ❤
You are not the only one to get this error.
I spent entire night trying to figure out what was going wrong, until I even printed out the environment variables...😮💨
Damn Mr. Schafer, your voice has changed, i can feel it :')
So happy to see new video 😃
Nice to see you back
So pleased that you are back. Does order matter for variable expansion in .env file e.g., USERNAME to be defined above EMAIL?
Happy to see you buddy...
Welcome back, Corey!
The legend is back
Hi Corey, I absolutely love your content on python as it's very informative, glad to see you doing tutorials again. Though I do have a question, after going through the beginner python playlist and OOP python playlist, I just see a lot of python explaination videos floating around and don't know what order I should pick them up in, any reccomendations?
Informative and to the point. Thanks
He is BACK !!!
Thanks a lot, the timming could be better for a project I'm in at the moment!
Waiting for your pytorch or tensorflow tutorial.
Also docker.
Great video!
Does this physically add the environment variable into the system environment variable list? What i mean by that, after i added it once, i can delete the .env file since it is now stored by the system.
Great question! When you use python-dotenv, it loads environment variables into the environment of the Python process where it’s called. This means the variables are only accessible within that specific process and do not affect or appear in the system environment or any other processes.
For example, if you set an API key using python-dotenv in your Python script, that API key will be available throughout the execution of your script, but once the script finishes, the API key disappears from the environment; it won’t be accessible from other scripts or applications.
Additionally, these variables are not set system-wide. This is an important security feature as it prevents sensitive data from being accessible beyond the intended scope. This process-specific loading ensures that other applications will not see the environment variables set by python-dotenv. Each process would need to load its .env file independently.
@@coreyms Thank you for the answer, now i can understand how it work.
@@coreyms what about using a /etc/config.json file if you are running an apache web server, witch is a better way? i learned that from your django series to hide sensitive information
10:42 how to override existing environment variables. (This is new to me)
Man I miss you, where have you been?
YAYYYYY COREY VIDEOOOOOOO!!!!!!!!!!!!
GOAT IS COMING BACK
Let's now hope 🤞 that the streak continues ❤
master corey is back!
Corey, if you give some advice for beginners in programming, it would be great.
The GOAT is back!!
Can't believe it😂 Now you are using vscode you used to say " let me open up my sublime text"😂😂
Yeah he’s evolved backwards by using that proprietary Microsoft garbage
Sublime may still be making an appearance if I can get a few things figured out. A lot of the packages I used on there haven’t been maintained and have broken with updates to either Sublime or Python. I still wish I could get VS Code to my minimalist liking for recordings. I think I can, but still a little ways to go
@@coreymstry out zed editor. It’s faster than Sublime and simpler than VSCode.
@@coreymshave you tried out zen mode on VSCode?
@@chiroyce Yep, that’s what I’m using here. It helps a lot
can somebody tell about the permissions we set to that file
imagine doing in this in linux what perms shall i set for the .env file
nice tutorial thank you