I enjoyed this video, even as an experienced Python dev, because it shows the ease and the versatility of Python scripting to handle tasks. You do a good job in cleanly writing the code without describing too much of the details. I'd refer this video to anyone I know who is learning Python so they could follow line-by-line and research for themselves what is being done. Good job.
Please I'd like to ask why you created a conda environment to put in your projects and if it is required to do so. I'm new to python so I'd to replicate these projects.
Creating an environment helps you manage your library versions between projects. So in case you want to build another project with the same library but with different libraries or Python versions nothing breaks.
Hi guys,
Hope this video was helpful for you. What other automation ideas will you like me to implement?
Don’t forget to like, share and subscribe.😊
I enjoyed this video, even as an experienced Python dev, because it shows the ease and the versatility of Python scripting to handle tasks. You do a good job in cleanly writing the code without describing too much of the details. I'd refer this video to anyone I know who is learning Python so they could follow line-by-line and research for themselves what is being done. Good job.
Amazing. Thanks a lot for the comment.
This video is so interesting for someone learning python automation and web scraping, makes it look se easy. thanks for this.
Glad it was helpful!
Please I'd like to ask why you created a conda environment to put in your projects and if it is required to do so. I'm new to python so I'd to replicate these projects.
Creating an environment helps you manage your library versions between projects. So in case you want to build another project with the same library but with different libraries or Python versions nothing breaks.
@@samson_afolabi Thank you for explaining, that really made things clear.