hub.py 2.1 KB
Newer Older
S
Steffy-zxf 已提交
1
#coding:utf-8
W
wuzewu 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# 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 已提交
19

S
Steffy-zxf 已提交
20
import six
W
wuzewu 已提交
21 22
import sys

W
wuzewu 已提交
23 24 25 26 27 28 29 30
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 已提交
31 32

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

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

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

W
wuzewu 已提交
42
        if not argv:
W
wuzewu 已提交
43
            help.command.execute(argv)
W
wuzewu 已提交
44 45 46 47 48
            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 已提交
49
            help.command.execute(argv)
W
wuzewu 已提交
50
            exit(1)
W
wuzewu 已提交
51
            return False
W
wuzewu 已提交
52

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


W
wuzewu 已提交
57 58
command = HubCommand.instance()

W
wuzewu 已提交
59 60

def main():
S
Steffy-zxf 已提交
61 62 63 64 65 66 67
    argv = []
    for item in sys.argv:
        if six.PY2:
            argv.append(item.decode(sys.stdin.encoding).decode("utf8"))
        else:
            argv.append(item)
    command.execute(argv[1:])
W
wuzewu 已提交
68 69


W
wuzewu 已提交
70
if __name__ == "__main__":
S
Steffy-zxf 已提交
71 72 73 74 75 76 77
    argv = []
    for item in sys.argv:
        if six.PY2:
            argv.append(item.decode(sys.stdin.encoding).decode("utf8"))
        else:
            argv.append(item)
    command.execute(argv[1:])