Packt Publishing approached me about being a technical reviewer for the book, Software Architecture with Python by Anand Balachandran Pillai. It sounded pretty interesting so I ended up doing the review for Packt. They ended up releasing the book in April 2017. Quick Review Why I picked it up: Packt Publishing asked me to do […]
This week we welcome Aileen Nielsen as our PyDev of the Week. Aileen has been using Python in the data science field for a while now. She recently gave a tutorial on Time Series Analysis at PyCon 2017 and she also did a talk on NoSQL Python at PyData Amsterdam 2016. Let's take a few […]
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 […]
I recently decided to start putting together some fun example desktop applications using Python. I've been using wxPython to create the cross platform applications. My first one is called Boomslang XML and is a basic XML editor. The name, Boomslang, comes from a large venomous snake. It's name basically means "tree snake", which I thought […]
This week we welcome Amir Rachum as our PyDev of the Week. Amir is the author / maintainer of pydocstyle and yieldfrom. Amir also write a fun little blog about Python. Let's take a few moments to get to know Amir better! Can you tell us a little about yourself (hobbies, education, etc): I'm an […]
Most applications come with the Status Bar. The status bar is the widget along the bottom of most applications that you use every day. They give you information about what line you're editing in a text editor or when you last saved. In wxPython, you can add a status bar to your frame by using […]