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
Category: 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 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: Binary Search Tree and its functionality in python
Back in the algorithms section with python we are going to see how we can code Binary Search Tree and its functionality in python. Binary search tree are binary tree where the left child is less than root and right child is greater than root. We will be performing insertion, searching, traversal, min and other
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
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.
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
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
Build sentiment classifiers in 10 minutes using textblob and python.
It seems like making sentiment classifier for your self is tough but trust me its not so. With so much libraries present now a days its not at all tough to make these. You just need to know about the libraries you will need. Today we will see how to build a sentiment classifier in 10
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