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 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 Managers Python 3.10 – Parenthesized Context Managers wxPython’s Context Managers Python 201 – An Intro to Context Managers

An Intro to the contextlib Module in Python (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 »

Python Automation Libraries (Video)

Learn about some of the automation packages that you can use in Python in this handy video. Links are also provided here underneath the video. Web Automation Packages Selenium – https://www.selenium.dev/ Playright – https://playwright.dev/python/docs/intro ScraPy – https://scrapy.org/ BeautifulSoup – https://www.crummy.com/software/BeautifulSoup/bs4/doc/ GUI Automation Packages SikuliX – http://sikulix.com/ pywinauto – https://pywinauto.readthedocs.io/en/latest/ PyAutoGUI – https://pyautogui.readthedocs.io/en/latest/ Excel Automation OpenPyXL

Python Automation Libraries (Video) Read More »

How to Create a Command-line Application with argparse

When you are creating an application, you will usually want to be able to tell your application how to do something. There are two popular methods for accomplishing this task. You can make your application accept command-line arguments or you can create a graphical user interface. Some applications support both. Command-line interfaces are helpful when

How to Create a Command-line Application with argparse Read More »