My experiences building a small app on Python

Terry Reedy tjreedy at udel.edu
Tue Jan 26 16:22:53 EST 2010


On 1/26/2010 8:51 AM, Cascade3891 wrote:
> Hello Python community,
>
> I built a small app with Python for the first time. It has served a
> very useful and productive purpose for me and my colleagues at work.
>
> I have shared my experiences on the following link due to the better
> web presentation tools and coding presentation tools:
> http://www.daniweb.com/forums/thread255458.html
>
> It's a bit of a read. But insightful.
>
> If you have any feedback or tips and advice, please let me know.

When one has multiple small images that are all the same size, a 
standard trick is to have *one* image (and one file -- a lossless .bmp 
or .png) that is a tiled composite of the images. Read in the image and 
'snip' apart the tiles. I have also seen bitmaps encoded in code as a 
hex string (for use with tk), but I do not know how well that would work 
with wx.

> I've fallen in love with programming because of Python. =)

You are not the only one. Welcome to the club.

Terry Jan Reedy





More information about the Python-list mailing list