hub.py 1.8 KB
Newer Older
W
wuzewu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright (c) 2019  PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
W
wuzewu 已提交
18

W
wuzewu 已提交
19 20
import sys

W
wuzewu 已提交
21 22 23 24 25 26 27 28
from paddlehub.common.logger import logger
from paddlehub.commands.base_command import BaseCommand
from paddlehub.commands import show
from paddlehub.commands import help
from paddlehub.commands import version
from paddlehub.commands import run
from paddlehub.commands import download

W
wuzewu 已提交
29 30

class HubCommand(BaseCommand):
W
wuzewu 已提交
31 32 33 34 35
    name = "hub"

    def __init__(self, name):
        super(HubCommand, self).__init__(name)
        self.show_in_help = False
W
wuzewu 已提交
36

W
wuzewu 已提交
37
    def execute(self, argv):
38 39
        logger.setLevel("NOLOG")

W
wuzewu 已提交
40
        if not argv:
W
wuzewu 已提交
41
            help.command.execute(argv)
W
wuzewu 已提交
42 43 44 45 46
            exit(1)
            return False
        sub_command = argv[0]
        if not sub_command in BaseCommand.command_dict:
            print("ERROR: unknown command '%s'" % sub_command)
W
wuzewu 已提交
47
            help.command.execute(argv)
W
wuzewu 已提交
48
            exit(1)
W
wuzewu 已提交
49
            return False
W
wuzewu 已提交
50

W
wuzewu 已提交
51
        command = BaseCommand.command_dict[sub_command]
W
wuzewu 已提交
52
        return command.execute(argv[1:])
W
wuzewu 已提交
53 54


W
wuzewu 已提交
55 56
command = HubCommand.instance()

W
wuzewu 已提交
57 58

def main():
W
wuzewu 已提交
59
    command.execute(sys.argv[1:])
W
wuzewu 已提交
60 61


W
wuzewu 已提交
62
if __name__ == "__main__":
W
wuzewu 已提交
63
    command.execute(sys.argv[1:])