Hi there folks. Some time ago i was very much interested in how music downloaders for various websites worked. In order to learn this i went forward to make my own downloader for ex.fm . Currently ex.fm does not allow users to download songs so this was a very ...
read more-
-
Software Spotlight: Bitmessage
August 13, 2013One of the latest application made with python. Definitely worth checking out. Do share your views in the comments below.
read more -
Storing and Loading Data with JSON
August 08, 2013We've already learned about pickle, so why do we need another way to (de)serialize Python objects to(from) disk or a network connection? There are three major reasons to prefer JSON over pickle:
- When you're unpickling data, you're essentially allowing your data source to execute arbitrary ...
-
The self variable in python explained
August 07, 2013Hi there fellas. In this post I am going to teach you about the
read moreself
variable in python. I have seen many beginners struggling to grasp the concept ofself
variable. If you are one of them then this post is for you. So lets start by making a class ... -
Python socket network programming
August 06, 2013Hi there fellows. In this post I am going to take you on an adventure with python sockets. They are the real backbones behind web browsing. In simpler terms there is a server and a client. We will deal with the client first. So lets first begin by importing the ...!--more-->
read more -
*args and **kwargs in python explained
August 04, 2013Hi there folks. I have come to see that most new python programmers have a hard time figuring out the *args and **kwargs magic variables. So what are they ? First of all let me tell you that it is not necessary to write *args or **kwargs. Only the * (aesteric) is ...!--more-->
read more