I have a class with only class methods. Is it a Pythonic way of namespacing? If not, what is the best way to group similar kinds of methods?.
class OnlyClassMethods(object):
    @classmethod
    def method_1(cls):
        pass
    @classmethod
    def method_2(cls):
        pass
 
     
    