My First API using Google App Engine and Flask.

Today, i want to share about my latest Github project which i created using Google App Engine and Pycharm. I used micro web framework Flask for creating the API.

Actually,it is really easy to design API using GAE.

This simple api will generate a simple json of latest whatsapp download link and version number.

Later,i will add a tutorial series … Read more

Sending free sms using api

indian_sms_free

Hi,In this article i will demonstrate how to send free sms using api.First of all,This method is only for indians and this is just an implementation of mashape sms api.Here,I used 2 different sms apis,one is free from webaroo (no login required,but limited sms) and other uses fullonlinesms(you need to signup).

Please make sure that,this is a Third PartyRead more

How to break PatternLock in Android

**Root Permission required !!!

First of all,there are many ways to do this.I am only showing one method using a python script.This is really easy to do.You need Python compiler and rooted phone.Here,we need .key file for decoding the gesture code.

1) If you don’t have access to device,then you need to download Android SDK from here.Then from … Read more

Parse IoT Tutorial – Part 1

Everything is Connected and Connection is Power” –IoT(Internet of Things)

In this post,we will create  simple IoT(Internet of Things) App using Arduino+Python+Parse+Android.Due to more contents,i divided into two sections.In this,I will create Arduino to Parse server connection and other part will deal with Android  using Parse SDK. The … Read more

PygLatin – Python Code

This is a simple python code which i used while learning python from  . I thought this will be useful for anyone ..

 

… Read more

Check OS name in python

For my beginner python article,Check This

This python code will check your Operating System whether you are using Linux,Windows or Mac.

import sys
if sys.platform.startswith('win32'):
 print("Windows")
elif sys.platform.startswith('linux2'):
 print("Linux")
elif sys.platform.startswith('cygwin'):
 print("Windows/Cygwin")
elif sys.platform.startswith('darwin'):
 print("Mac OS X")
elif sys.platform.startswith('os2'):
 print("OS/2")
elif sys.platform.startswith('os2emx'):
 print("OS/2 EMX")
elif sys.platform.startswith('riscos'):
 print("RiscOS")
elif sys.platform.startswith('atheos'):
 print("AtheOS")
Reference:

1) https://docs.python.org/2/library/sys.html#sys.platform

2) stackoverflow [Other Way]… Read more

Python For Beginners

This is  just an introduction to Python and How to use it.

Why Python ?

So,there are many programming languages available and why i need to learn python ?,if this is your question

Then my answer is quite simple.Python is Easy to Learn and Implement Programming Language.This language saves many time from your coding style.Syntax of python are … Read more