Category Archives: Python


April 26, 2016 4:47 am

Python: A shareable Todo lists/notes web app with web2py Part 2


Python: A shareable Todo lists/notes web app with web2py Part 2
In web2py, controllers are located in web2py_folder/applications/YOUR_APPLICATION_FOLDER/controllers. If your application is called bars and you create a new .py file called snickers.py and add a function in it called view there, this would equal to the following path /bars/snickers/view.

[ Read More ]


April 25, 2016 4:34 am

Python: A shareable Todo lists/notes web app with web2py Part 1


Python: A shareable Todo lists/notes web app with web2py Part 1
Python is the 2nd most popular language out there according to http://pypl.github.io/PYPL.html. With it, you can build plenty of things such as desktop apps, games, viruses, you can use it for server-side programming and so on.

[ Read More ]


April 18, 2016 7:38 pm

Creating your first desktop app with Python


Creating your first desktop app with Python
Python enables developers to craft desktop applications. In this tutorial, we are going to create a desktop app in Python and make an executable for Windows. The application is going to be simple – it would allow users to select an article from a list, click read and the article will open in their browser. We are going to use Tkinter to craft the GUI that our application needs.

[ Read More ]


April 10, 2016 9:11 pm

Learning Python: Creating a Dictionary app in Python


Learning Python: Creating a Dictionary app in Python
In this article, we will be building a dictionary app with Python and the Tkinter GUI library. The app is going to receive words from the user and it will display their definition. The definition is going to come from a third-party API.

[ Read More ]