In this screencast, we will learn how to turn your Python application into a Windows installer using Inno Setup. You can also read the chapter this video is based on here or get the book on Leanpub
In this screencast, we will learn how to turn your Python code into a Windows executable file using the bbfreeze project. You can also read the chapter this video is based on here or get the book on Leanpub Related Reading A bbfreeze Tutorial – Build a Binary Series!
In this screencast, we will be learning about Python's builtin sqlite module. This episode is based on chapter 18 of Python 101, which you can read here: http://python101.pythonlibrary.org/
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 has some powerful features that allow you to introspect your code or the code of others. I created the following video tutorial to help you learn how that works. This tutorial is from the Python 101 Screencast Related Articles Python 101: Introspection
The Python programming language has several built-in types that it supports. One of my favorites is the dictionary. A dictionary is a mapping object maps hashable values to arbitrary objects (source). Other languages call dictionaries "hash tables". They are mutable objects that you can change whenever you want to, unlike tuples. A dictionary's keys must […]