Mike

Using CSS to Style a Python TUI with Textual

Textual is a Python framework for creating Text Based user interfaces (TUIs). You can create graphical user interfaces in your terminal with Textual. If you haven’t heard of Textual before, check out An Intro to Textual – Creating Text User Interfaces with Python In this tutorial, you will learn how to create and style a […]

Using CSS to Style a Python TUI with Textual Read More »

Episode 21 – Sanic – The Async Python Web Framework

Python has many remarkable web frameworks to choose from. Sanic is another excellent web framework and one of the first to support async programming. Sanic is built to be able to build fast and run fast. In this episode, we talk to Adam Hopkins, one of the maintainers of the Sanic web framework. We discuss the following

Episode 21 – Sanic – The Async Python Web Framework Read More »

wxPython 101 – wx.NewId() is Deprecated!

Deprecation warnings are handy ways for open-source maintainers to alert their users that some part of their package is no longer going to be supported. Good maintainers will provide migration guides that tell you what to do when you see a deprecation warning. You don’t want to ignore a deprecation warning because it alerts you

wxPython 101 – wx.NewId() is Deprecated! Read More »

lxml objectify and Working with XML Tag Containing Periods

Recently, I have been working on automating Jenkin’s config XML files using Python and the lxml package. I have several articles on using lxml and its handy objectify functionality: Python: Creating XML with lxml.objectify Parsing XML with Python using lxml.objectify But I’ve never really covered what to do when you need to create or parse

lxml objectify and Working with XML Tag Containing Periods Read More »