Archive for the 'python' Category
Monday, August 28th, 2006
Satoshi Tanabe has translated my Creating a GUI using PyGTK and Glade tutorial into Japanese! You can view the Japanese tutorial on his website: http://po3a.blogspot.com/2006/08/pygtk-glade-gui.html Way to go Satoshi!
Posted in News, PyGTK, python | 2 Comments »
Saturday, August 19th, 2006
Topics covered in this tutorial: Glade PyGTK gtk.FileChooserDialog gtk.FileFilter gtk.TextView gtk.TextBuffer gtk.TextMark gtk.MessageDialog You can download the full source for this tutorial here. One of the things that I found the other day while I was surfing the web looking for information on Python was this WordPress Python library. Since I use WordPress for this [...]
Posted in glade, PyGTK, python, tutorial, WordPy | 48 Comments »
Friday, August 18th, 2006
Hey everyone, what’s up? This is a test for my WordPy project: It’s basically an offline WordPress blog poster written in python and PyGtk. My tutorial on creating this project is almost done, but I still have to finish the last little bit and then proof read all of it. Hopefully this works!
Posted in python | 2 Comments »
Tuesday, July 25th, 2006
One of the things that I wanted to add to my simple PyWine application was an easy way for people to rate their wine. There were lots of different ways to do it but since I was looking for a tutorial to write I decided that I wanted to do it the way that you [...]
Posted in gui, PyGTK, python, tutorial | 28 Comments »
Thursday, June 15th, 2006
I’ve been meaning to do this for a while but simply couldn’t find the time up until right before I leave on my trip. Here is a quick screenshot of my last tutorial running on Windows: Since I’ve been showing mostly Mac and Linux screenshots I thought I’d post a Windows just to balance things [...]
Posted in glade, PyGTK, python | 15 Comments »
Tuesday, May 30th, 2006
After working with PyGTK and Glade for my first tutorial, I decided to write another more complex tutorial but I couldn’t think of a topic (Note: If you have any suggestions for any tutorials or posts I’d love to hear them) so I decided to work on creating a simple application and hopefully useful topics [...]
Posted in glade, gui, PyGTK, python, tutorial | 94 Comments »
Sunday, May 7th, 2006
After spending some time creating a GUI using TKinter and having it be pretty easy, but getting frustrated by how linked my code and the GUI was, I decided to look into creating a GUI using another toolkit. After looking around at the options for a while I settled on using PyGTK and Glade The [...]
Posted in glade, gui, PyGTK, python | 156 Comments »
Sunday, April 16th, 2006
All right in this section of the tutorial we are going to start adding the bad guys. If you are familiar with the changes that we made in part two it should be pretty clear to you how are are going to create these bad guys. If you haven’t already you should check out part [...]
Posted in pygame, python, tutorial | 34 Comments »
Monday, March 27th, 2006
This is a quick post on how to use menu’s in Tkinter, if you are unfamiliar with Tkinter you might want to check out some of my other Tkinter related posts. We are going to start of with a basic python Tkinter app: #! /usr/bin/env python from Tkinter import * class App(Frame): def __init__(self, master): [...]
Posted in beginnings, gui, python, tkinter, tutorial | 10 Comments »
Sunday, March 19th, 2006
All right in Part one we actually created a semi-working almost-game, in part two we’re going to go a bit further, in part two we’re going to add the walls that will make help make PyMan (our python based PacMan clone) an actual game. Note: Part one has been mistakenly half-deleted by me, so it [...]
Posted in beginnings, pygame, python, tutorial | 21 Comments »