download.py 2.9 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
from paddle_hub.common.logger import logger
W
wuzewu 已提交
19
from paddle_hub.commands.base_command import BaseCommand, ENTRY
W
wuzewu 已提交
20 21 22
from paddle_hub.common import utils
from paddle_hub.common.downloader import default_downloader
from paddle_hub.common.hub_server import default_hub_server
W
wuzewu 已提交
23
import argparse
W
wuzewu 已提交
24 25 26


class DownloadCommand(BaseCommand):
W
wuzewu 已提交
27 28 29 30 31 32
    name = "download"

    def __init__(self, name):
        super(DownloadCommand, self).__init__(name)
        self.show_in_help = True
        self.description = "Download a paddle hub module."
W
wuzewu 已提交
33 34 35 36 37
        self.parser = self.parser = argparse.ArgumentParser(
            description=self.__class__.__doc__,
            prog='%s %s <module_name>' % (ENTRY, name),
            usage='%(prog)s [options]',
            add_help=False)
W
wuzewu 已提交
38
        # yapf: disable
W
wuzewu 已提交
39
        self.add_arg('--output_path',  str,  ".",   "path to save the module" )
W
wuzewu 已提交
40 41
        self.add_arg('--uncompress',   bool, False,  "uncompress the download package or not" )
        # yapf: enable
W
wuzewu 已提交
42 43

    def exec(self, argv):
W
wuzewu 已提交
44 45 46 47
        if not argv:
            print("ERROR: Please specify a module\n")
            self.help()
            return False
W
wuzewu 已提交
48
        module_name = argv[0]
W
wuzewu 已提交
49 50 51 52
        module_version = None if "==" not in module_name else module_name.split(
            "==")[1]
        module_name = module_name if "==" not in module_name else module_name.split(
            "==")[0]
W
wuzewu 已提交
53
        self.args = self.parser.parse_args(argv[1:])
W
wuzewu 已提交
54 55 56 57
        if not self.args.output_path:
            self.args.output_path = "."
        utils.check_path(self.args.output_path)

W
wuzewu 已提交
58
        url = default_hub_server.get_module_url(
W
wuzewu 已提交
59 60 61 62 63 64
            module_name, version=module_version)
        if not url:
            tips = "can't found module %s" % module_name
            if module_version:
                tips += " with version %s" % module_version
            print(tips)
W
wuzewu 已提交
65
            return True
W
wuzewu 已提交
66 67

        if self.args.uncompress:
W
wuzewu 已提交
68
            result, tips, file = default_downloader.download_file_and_uncompress(
69
                url=url, save_path=self.args.output_path, print_progress=True)
W
wuzewu 已提交
70
        else:
W
wuzewu 已提交
71
            result, tips, file = default_downloader.download_file(
72
                url=url, save_path=self.args.output_path, print_progress=True)
W
wuzewu 已提交
73
        print(tips)
W
wuzewu 已提交
74
        return True
W
wuzewu 已提交
75 76 77


command = DownloadCommand.instance()