build desktop notifier using python

Build desktop notifier using python and notify2.


You must have heard about desktop notifier, today we are going to build one and see how it works. We are going to do it using python and we will do it on ubuntu for now. So, lets start to build desktop notifier using python. Lets build desktop notifier using python For building this we

Why to use process instead of threads in python?

Why to use process instead of threads in python?


Yup you may be thinking why so? These are not my words but comes from the experts of python. They use to say this because of a component called as GIL or global interpreter lock. Let’s see Why to use process instead of threads in python? Why to use process instead of threads in python? Since

Level order traversal of a binary tree.

Level order traversal of a binary tree in python.


Binary tree are the tree where one node can have only two child and cannot have more than two. Level order traversal of a binary tree. Level order traversal means that we visit the nodes level by level. Like for below tree the level order traversal will be  Its Level order traversal will be 1

Algorithms: Mirror a Binary tree using python

Algorithms: Mirror a Binary tree using python


In this article we are going to see how we can mirror a binary tree using python. Lets see what are binary tree Algorithms: Mirror a Binary tree using python  Binary tree are the tree where one node can have only two child and cannot have more than two. Traversal means visiting all the nodes

Algorithms: Coding a linked list in python

Algorithms: Coding a linked list in python


So next in the algorithm section we are going to write a linked list using python. If you don’t know what is linked list you can read it here. Algorithms: Coding a linked list in python A linked list is a linear collection of data elements, called nodes, each pointing to the next node by

Binary Tree and its traversal using python.

Binary Tree and its traversal using python.


After a long time I took a look in algorithms and data structure and what I wrote first in Binary Tree and its different traversal in C++. I have never written them in python so I tried to write one. And yes writing them down in python is lot more easier. So lets me first introduce

Naive bayesian text classifier using textblob and python

Naive bayesian text classifier using textblob and python


Text classifier are systems that classify your texts and divide them in different classes. In this article we are going to made one such text classifier using textblob and python. You want to read more about naive bayesian theorem, read it here. Naive bayesian text classifier using textblob and python For this we will be

How to download under proxy with python

How to download under proxy with python


Proxies are headache for many people. They restrict you from many things you love to do. In this short article I will tell you how to write scripts to work under proxy in python. Its really simple and you don’t need to know anything exceptional except a bit of python programming language. Lets see how