For the rest of March, you can get my book, Python 101 for 50% off if you use the following code: march15 Learn how to program with Python from beginning to end. My book is made primarily for beginners. However, at least two-thirds of it is aimed at intermediate programmers. You may be wondering how […]
This week we welcome Ned Batchelder (@nedbat) as our PyDev of the week. I have enjoyed Ned's blog for quite some time. He is also the author of the coverage package and is quite active in several Python user groups. Let's spend some time getting to know more about Ned!
This week we welcome Bryan Oakley as our PyDev of the Week! I've met Bryan a few times in various Python-related forums and developer hangouts online. He's a master at Tkinter and has answered a lot of questions about it (and Python) of StackOverflow and other places. I hope you will enjoy getting to know […]
February 23, 2015 by
Mike This week we welcome Maciej Fijalkowski (@fijall) as our PyDev of the Week. He is a freelance programmer who spends a lot of time working on the PyPy project. I would recommend checking out some of his work on github. Let's spend some time learning about our fellow Pythonista!
February 19, 2015 by
Mike I see this come up from time to time where people will ask how to center a widget in a window. The solution is actually quite easy. In most cases, you just need to nest a Horizontal BoxSizer inside of a Verticel BoxSizer with some spacers. In this article, I'll show you two three different […]
February 18, 2015 by
Mike I recently came across a fun little project called EasyGUI_Qt. It's basically the same thing as EasyGUI except that it uses PyQt4 instead of Tkinter. The idea behind both of these packages is to allow the developer to ask the user simple questions using dialogs. In this article, we'll spend some time learning how to […]