PyDev of the Week: Denny Perez
This week we welcome Denny Perez (@dennyperez18) as our PyDev of the Week! Denny works at nventive and is very active in the Python community, including helping to organize PyCon itself. You can see...
View ArticleAn Intro to Context Managers in Python (Video)
Context managers are a handy way to open and close files, dialogs, thread-locks and so much more! Check out this short tutorial that introduces you to the concepts of context managers by Mike Driscoll...
View ArticleAn Intro to the contextlib Module in Python (Video)
Learn how to create different types of context managers using Python's contextlib module! You can learn more in the contextlib documentation. Related Articles Python's with Statement and Context...
View ArticleAn Intro to Python Web Frameworks (Video)
Learn about some of the many Python web frameworks that are available to you in this video. Web frameworks mentioned in this video Django - https://www.djangoproject.com/ Flask -...
View ArticlePyDev of the Week: Allen Downey
This week we welcome Allen Downey (@AllenDowney) as the PyDev of the Week! Allen is the author of Think Python, Modeling and Simulation in Python, Think Java: How to Think Like a Computer Scientist,...
View ArticleData Science Packages in Python (Video)
In this tutorial, I will talk about some of the many different data science packages you can use in Python. Packages mentioned: pandas, matplotlib, numpy, scipy, mahotas, OpenCV, Keras, PyTorch,...
View ArticleWhat's New in Python 3.11 (Video)
In this video, Mike Driscoll talks about what to expect in Python's newest release, which is coming in Fall 2022 Better Performance Improved error messages Exception groups New type hints The new...
View ArticlePyDev of the Week: Jürgen Gmach
This week we welcome Jürgen Gmach (@jugmac00) as our PyDev of the Week! Jürgen is a maintainer of the tox automation project. You can see what else Jürgen is up to over on his website. You can also...
View ArticleAn Intro to Kivy Layouts (Video)
Learn how to layout your widgets in Kivy, a mobile GUI framework for Python. Kivy is a cross-platform GUI framework that also works on iOS and Android. The examples in this video are based on the code...
View ArticleUsing Python to Turn Text-to-Speech on Mac OSX (Video)
Learn how to turn text into speech on Mac OSX with the Python programming language The post Using Python to Turn Text-to-Speech on Mac OSX (Video) appeared first on Mouse Vs Python.
View ArticlePyDev of the Week: Luiz Gustavo Martins
This week we welcome Luiz Gustavo Martins (@gusthema) as our PyDev of the Week! Luiz has been posting a lot of Python content on Twitter lately, so if you like to learn Python or machine learning, you...
View ArticlePython 101 - An Intro to Functions
Functions are reusable pieces of code. Anytime you find yourself writing the same code twice, that code should probably go in a function. For example, Python has many built-in functions, such as dir()...
View ArticleUsing Python to Serve Files Locally (Video)
Did you know you can serve files on your local network using Python? It's easy when you use the built-in HTTP server! You can even use this technique to transfer files to your phone! Learn more about...
View ArticleHow to Convert CSV to Excel with Python and pandas (Video)
Learn how to use 3 lines of code to transform a CSV file to Excel using Python and the pandas package! Also demonstrates how to fix issues when things go wrong! The post How to Convert CSV to Excel...
View ArticlePython 101 - An Intro to Classes (Video)
Learn the basics of Classes and get your first taste of Object Oriented Programming in Python in this tutorial You will learn about: Class creation self -- what it means Subclass creation Polymorphism...
View ArticleAn Intro to Python's Package Installer: pip (Video)
In this tutorial, you will learn about Python's package installer, pip. You will discover how to do the following: Installing a Package Exploring Command Line Options Installing with requirements.txt...
View ArticlePyDev of the Week: Stephen Gruppetta
This week we welcome Stephen Gruppetta (@s_gruppetta_ct) as our PyDev of the Week! Stephen is the author of the book / blog, The Python Coding Book. Stephen is also an author and contributor at Real...
View ArticleAn Intro to Python's difflib Module (Video)
Learn the basics of Python's difflib module in this newest tutorial by Mike Driscoll What You'll Learn Getting Close Matches Using Differ Getting a Unified Diff Getting an HTML Diff The post An Intro...
View ArticlePyDev of the Week: Bas Steins
This week we welcome Bas Steins (@bascodes) as our PyDev of the Week! Bas is active in the Python community and freely gives out advice on Twitter. You can see what else Bas is up to on his blog. Let's...
View ArticlePyDev of the Week: Reindert-Jan Ekker
This week we welcome Reindert-Jan Ekker (@rjekker) as our PyDev of the Week! Reindart is a freelance teacher who teaches Python, Java, Django, Bash and more. You can learn more about what he teaches at...
View Article