Re: seeking the "Hello World" of Packages

2006-08-13 Thread dwhall
Kevin, I just posted a small package to the python package index. It has one source file of interest and some unit tests.The remaining files are either needed for or made by distutils. Should be pretty easy to follow if you've read the distutils docs. Note that the package you get does not

Re: seeking the "Hello World" of Packages

2006-08-11 Thread Gabriel Genellina
At Friday 11/8/2006 14:48, Bell, Kevin wrote: I'm trying to get an idea of how packages work and I've read about it in the Py Tutorial and Nutshell, but I'm still craving a concrete example that I can poke through. Does anyone have a really basic package that does very little that I could look

Re: seeking the "Hello World" of Packages

2006-08-11 Thread faulkner
yep, that's all a package is. if you have trouble importing, check your PYTHONPATH environment variable, or sys.path. Bell, Kevin wrote: > I'm trying to get an idea of how packages work and I've read about it in > the Py Tutorial and Nutshell, but I'm still craving a concrete example > that I can

seeking the "Hello World" of Packages

2006-08-11 Thread Bell, Kevin
I'm trying to get an idea of how packages work and I've read about it in the Py Tutorial and Nutshell, but I'm still craving a concrete example that I can poke through. Does anyone have a really basic package that does very little that I could look at? What I've gathered thus far is that a packag