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