There are several approaches for adding speech recognition capabilities to a Python application. In this article, I’d like to introduce a… (more…)
Read more »
Turn (almost) any Python command line program into a full GUI application with one line - chriskiehl/Gooey... (more…)
Read more »
In this article, I’m going to show you the top 5 unusual features you can find in Python. Experienced Python developers might recognize some of them. However, others will still be unknown. Regardless, I find all of them very cool. (more…)
Read more »
django-likeit - A simple app for Django that enables users to like and unlike any object/item within any model. It generates a like button for your objects. (more…)
Read more »
Let’s say you want to store a list of integers in Python: list_of_numbers = [] for i in range(1000000): list_of_numbers.append(i) Those numbers can easily fit in a 64-bit integer, so one would hope Python would store those million integers in no more than... (more…)
Read more »