Creating Packages

2007-07-14 Thread Greg Lindstrom
Hello, All- I have written a class that allows me to create and manipulate data segments (the type one deals with when reading/writing text files); validating fields, serialization, etc. I would like to put this together as a module and release it to the community while I expand on the feature

Re: is there a tutorial for creating packages in python?

2006-12-08 Thread Soni Bergraj
krishnakant Mane wrote: > I saw the official python tutorial and I think chapter 6 has quite a > bit on that. I'm not sure what you are after. There is not much to say about building python packages. I imagine that the important stuff should be in there (I have not checked!). If you are looking f

is there a tutorial for creating packages in python?

2006-12-08 Thread krishnakant Mane
hello all, I have got a lot of sets of functions and classes that do related work. so just like we get python libraries I too need to create such libraries often called packages. I want to put my code to re-use so will create these libraries and put in the site-libs folder. can any one suggest me