Video

An Intro to Testing in Python with a Code Kata (Video)

In today’s video, you will learn about the following topics: An intro to Test Driven Development (TDD) Red-Green-Refactor The importance of source control Code coverage in Python I’ll show you how I use pytest to test your code and Coverage to learn how much of your code is truly tested. You will use the FizzBuzz […]

An Intro to Testing in Python with a Code Kata (Video) Read More »

An 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 – https://flask.palletsprojects.com/en/2.1.x/ Pyramid – https://trypyramid.com/ FastAPI – https://fastapi.tiangolo.com/ CherryPy – https://docs.cherrypy.dev/en/latest/ TurboGears – https://turbogears.org/ Web2py – http://www.web2py.com/ Bottle – https://bottlepy.org/docs/dev/ Python Content Management Systems Plone – https://plone.org/ Django

An Intro to Python Web Frameworks (Video) Read More »

An 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 Related Articles Python’s with Statement and Context Managers Python 3.10 – Parenthesized Context Managers wxPython’s Context Managers Python 201 – An

An Intro to Context Managers in Python (Video) Read More »