I am working on a small project which I intend to spread out over separate python files for isolation of separate modules. Some of these modules just need to have static information that needs to be accessible across the program, and some have utility functions (for example, a geometry library for drawing objects).
Would it be pythonic if I just made a separate .py and added constants and methods without having to define a class? It seems far simpler than having to create a class.