Originally posted by whitesaint
droid, is it for macintosh? i doubt its for mac os x, but i wuldnt mind taking a look at what you work with when you program with Python. I'm still sticking to Cocoa, but i just wanna see what Python is all about.
-whitesaint
python has been ported to MacOS carbon (works fine in 9.x and OS X) as MacPython:
http://www.cwi.nl/~jack/macpython.html
and has also been compiled from the unix source against the OS X bsd layer:
http://tony.lownds.com/macosx/
There is work in progress to combine the two into a single environment.
If you're looking for a more traditional mac-like environment, complete with an IDE, go for MacPython. MacPython has modules for QuickTime, QuickDraw, the Sound Manager, Internet Config, etc.
If you're looking for a more traditional unix-like environment, go for Tony's build of the unix source, or compile the unix source yourself.
I've got both (and jython) installed on my tiBook and use them every day. I also use python regularly at work, where I do unix system administration and network engineering. Python's a great language for scripting, comparable to Perl in many ways, and is also excellent for rapid development and prototyping of traditional applications.
I should also say that Python makes an excellent first language. To anyone who's interested in learning to program, pick up the 'Learning Python' book and get MacPython installed, and you'll fairly quickly get a handle on everything from basic programming topics to object-oriented programming and design.
-alex