Education

Python in education, from Kindergarten through college. The article will probably be about teaching Python.

Python 101 Screencast Update – Another Demo Video

Yesterday I put together another demo of Python 101, the Screencast. This one is based on the first chapter of my book, which covers the basics of IDLE, Python’s built-in development environment. You can check out the video below: The Kickstarter campaign for the screencast series has one more week to go. You can check

Python 101 Screencast Update – Another Demo Video Read More »

The Python 101 Screencast Kickstarter is Now Live!

My latest project is turning my book, Python 101, into a Screencast. I have started a Kickstarter to raise funds to help in this endeavor. You can check it out here: https://www.kickstarter.com/projects/34257246/the-python-101-screencast The basic idea is to take each chapter of the book and turn it into a screencast. There are 44 chapters currently that

The Python 101 Screencast Kickstarter is Now Live! Read More »

The Python 101 Screencast Kickstarter is Launching Soon

I am currently working on another Kickstarter campaign to turn my book, Python 101 into a video series. I am planning on launching this project on Wednesday, March 25th. There are 44 chapters in my book, so I’ll be creating a minimum of 44 screencast videos. Here is what is currently covered in the book

The Python 101 Screencast Kickstarter is Launching Soon Read More »

Machine vision with Python Kickstarter

Yesterday I posted about PyImageSearch Gurus computer vision Kickstarter and then I came across another semi-related Kickstarter. This one is for Machine vision with Python using an OpenMV Cam. It uses MicroPython (Python for microcontrollers) to control a camera on a circuit board. This project can be used with an Arduino, mbed or other microcontroller

Machine vision with Python Kickstarter Read More »

The PyImageSearch Gurus Kickstarter for Computer Vision

I’ve actually never heard of this guy, but the fellow behind the pyimagesearch blog has created a Kickstarter for a computer vision subscription course. His name is Adrian Rosebrock and his Kickstarter was funded in 25 minutes! His course covers a lot of different topics in computer vision and sounds really interesting. You should definitely

The PyImageSearch Gurus Kickstarter for Computer Vision Read More »

Mouse Vs Python Made the 11 Must Read Blogs for Python Devs

Code Condo recently named this blog, Mouse Vs Python, as one of the “11 Must-Read Blogs for Python Developers”. The article is worth a read as it lists a number of other really good websites, such as pydanny’s and Doug Hellman’s. I really enjoyed Effbot’s when I was learning Python, however I don’t think Mr.

Mouse Vs Python Made the 11 Must Read Blogs for Python Devs Read More »

Book Review: Mastering Object-Oriented Python

Packt Publishing asked me to be a technical reviewer for one of their latest Python books, Mastering Object-Oriented Python by Steven Lott. This book is a sequel of sorts to their 2010 release, Python 3 Object Oriented Programming by Dusty Phillips, which I reviewed here. Note: This book is explicitly for Python 3 developers and

Book Review: Mastering Object-Oriented Python Read More »

Python 101: Reading and Writing CSV Files

Python has a vast library of modules that are included with its distribution. The csv module gives the Python programmer the ability to parse CSV (Comma Separated Values) files. A CSV file is a human readable text file where each line has a number of fields, separated by commas or some other delimiter. You can

Python 101: Reading and Writing CSV Files Read More »