up vote 2 down vote favorite
share [g+] share [fb]

I'm working on framework for testing some command line utilities. I want to create some classes to hold the different types of information more easily.

Python is fairly new to me so I'm not sure how you would handle this. Do you keep all your classes in one file with your main script or can you separate them into their own files and use them in your main script.

What is the paradigm for how you create multiple classes and use them in a single script?

Duplicate of How many python classes should I put in one file

link|improve this question
Duplicate. stackoverflow.com/questions/106896/… – S.Lott Nov 19 '08 at 17:40
I'm closing this as a duplicate. I realize it's not exactly a dup, but you should find your answer in that one. – Paul Tomblin Nov 19 '08 at 17:56
feedback

closed as exact duplicate by S.Lott Nov 19 '08 at 17:56

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

4 Answers

The keyword is using modules.

link|improve this answer
1  
I think this would be a good answer if it was clearer that you can put 1 or more classes in a module (read file) and then import the module to access the class. – crackity_jones Nov 19 '08 at 18:00
feedback

"What is the paradigm for how you create multiple classes and use them in a single script?"

Are you asking about the import statement?

link|improve this answer
feedback

I spread functionality out into separate files as it makes sense, using a modular approach.

link|improve this answer
feedback

An answer from the duplicate question in the comments seems to answer my question. My understanding now is that you can add multiple classes to a separate file which would then be referred to as a module. Then you can import that module to use your classes.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.