ShakeCast Review: (not immediate) Organize code by functionality, not implementation
*Created by: mhearne-usgs* All functions in this repository are in a module called functions.py, and classes are all in a module called objects.py. This obviously is working for now, but it may not scale as the application grows larger. The more standard approach (I think) is to organize the functions/classes by what they *do*, not how they are implemented. This should make it easier for new developers to find their way around the code.
issue