Introduction

The official tutorial on Python GTK provides quite a good knowledge of making a python application on GTK, but it is quite difficult for a beginner to navigate through the docs and build a project. There are also quite rare good tutorials on the web. 

If you are a beginner in GTK, this is for you. However, basic knowledge of object oriented programming and Python is required. 

So how are the components arranged in this tutorial, 

  • We will first start with how to structure the program. 
  • We will then learn how to use each Pygtk Object like buttons, labels, etc…
  • Then we will use glade to build the GUI and how to connect it with our programs
  • And I guess that’s all you need to now to make a good GTK application

Leave a Comment