I'm used to the Java model where you can have one public class per file. Python doesn't have this restriction, and I'm wondering what's the best practice for organising classes.
|
|
A Python file is called a "module" and it's one way to organize your software so that it makes "sense". Another is a directory, called a "package". A module is a distinct thing that may have one or a dozen closely-related classes. The trick is that a module is something you'll import, and you need that import to be perfectly sensible to people who will read, maintain and extend your software. The rule is this: a module is the unit of reuse. You can't easily reuse a single class. You should be able to reuse a module without any difficulties. Everything in your library (and everything you download and add) is either a module or a package of modules. For example, you're working on something that reads spreadsheets, does some calculations and loads the results into a database. What do you want your main program to look like?
Think of the import as the way to organize your code in concepts or chunks. Exactly how many classes are in each import doesn't matter. What matters is the overall organization that you're portraying with your |
||||||
|
|
|
Since there is no artificial limit, it really depends on what's comprehensible. If you have a bunch of fairly short, simple classes that are logically grouped together, toss in a bunch of 'em. If you have big, complex classes or classes that don't make sense as a group, go one file per class. Or pick something in between. Refactor as things change. |
||
|
|
|
|
It entirely depends on how big the project is, how long the classes are, if they will be used from other files and so on. For example I quite often use a series of classes for data-abstraction - so I may have 4 or 5 classes that may only be 1 line long ( It would be stupid to split each of these into separate files - but since they may be used from different files, putting all these in a separate If you have a class with lots of code in it, maybe with some functions only it uses, it would be a good idea to split this class and the helper-functions into a separate file. You should structure them so you do The Python Modules documentation has some useful information on organising packages. |
||
|
|
|
|
I would say to put as many classes as can be logically grouped in that file without making it too big and complex. |
||
|
|
