pgadmin4/web/pgacloud/providers/_abstract.py
2024-01-01 14:13:48 +05:30

33 lines
872 B
Python

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2024, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
class AbsProvider:
""" Abstract provider """
parser = None
def init_args(self, parsers):
"""Not Required."""
pass
def commands(self):
""" Get the list of commands for the current provider. """
attrs = filter(lambda attr: attr.startswith('cmd_'), dir(self))
commands = {}
for attr in attrs:
method = getattr(self, attr)
commands[attr[4:]] = method
return commands
def cmd_help(self):
""" Prints the provider level help """
self.parser.print_help()