Python 101: Working with Dates and Time

Python gives the developer several tools for working with dates and time. In this article, we will be looking at the datetime and time modules. We will study how they work and some common uses for them. Let’s start with the datetime module! The datetime Module We will be learning about the following classes from […]

Python 101: Working with Dates and Time Read More »

PyCon 2017 Videos are Up

The PyCon 2017 videos are already available on Youtube. Here are some highlights: The Vanderplas Keynote Raymond Hettinger’s “Modern Python Dictionaries — A confluence of a dozen great ideas” Brett Cannon’s “What’s New in Python 3.6?” And there’s much more here: https://www.youtube.com/channel/UCrJhliKNQ8g0qoE_zvL8eVg/feed

PyCon 2017 Videos are Up Read More »

wxPython: Learning about TreeCtrls

The wxPython GUI toolkit comes with many widgets. A common control is a tree widget. wxPython has several different tree widgets, including the regular wx.TreeCtrl, the newer DVC_TreeCtrl and the pure Python variants, CustomTreeCtrl and HyperTreeList. In this article, we will focus on the regular wx.TreeCtrl and learn the basics of how to create and

wxPython: Learning about TreeCtrls Read More »