hub.py 2.3 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
import sys
B
BinLong 已提交
22
import requests
W
wuzewu 已提交
23

W
wuzewu 已提交
24
from paddlehub.common.logger import logger
W
wuzewu 已提交
25
from paddlehub.common.utils import sys_stdin_encoding
B
BinLong 已提交
26
from paddlehub.common import stats
W
wuzewu 已提交
27 28 29 30 31 32 33
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 已提交
34 35

class HubCommand(BaseCommand):
W
wuzewu 已提交
36 37 38 39 40
    name = "hub"

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

W
wuzewu 已提交
42
    def execute(self, argv):
43 44
        logger.setLevel("NOLOG")

W
wuzewu 已提交
45
        if not argv:
W
wuzewu 已提交
46
            help.command.execute(argv)
W
wuzewu 已提交
47 48 49 50 51
            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 已提交
52
            help.command.execute(argv)
W
wuzewu 已提交
53
            exit(1)
W
wuzewu 已提交
54
            return False
B
BinLong 已提交
55
        stats.hub_stat(['hub'] + argv)
W
wuzewu 已提交
56
        command = BaseCommand.command_dict[sub_command]
W
wuzewu 已提交
57
        return command.execute(argv[1:])
W
wuzewu 已提交
58 59


W
wuzewu 已提交
60 61
command = HubCommand.instance()

W
wuzewu 已提交
62 63

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


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