File size: 872 Bytes
6b6d936 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ##########################################################################
#
# 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()
|