download.py 2.5 KB
Newer Older
W
wuzewu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# 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
from paddle_hub.tools.logger import logger
from paddle_hub.commands.base_command import BaseCommand
W
wuzewu 已提交
20 21
from paddle_hub.tools import utils
from paddle_hub.tools.downloader import default_downloader
W
wuzewu 已提交
22
from paddle_hub.hub_server import default_hub_server
W
wuzewu 已提交
23 24 25


class DownloadCommand(BaseCommand):
W
wuzewu 已提交
26 27 28 29 30 31
    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 已提交
32 33 34 35
        # yapf: disable
        self.add_arg('--output_path',  str,  ".",   "path to save the module, default in current directory" )
        self.add_arg('--uncompress',   bool, False,  "uncompress the download package or not" )
        # yapf: enable
W
wuzewu 已提交
36 37

    def help(self):
W
wuzewu 已提交
38
        self.parser.print_help()
W
wuzewu 已提交
39 40

    def exec(self, argv):
W
wuzewu 已提交
41
        module_name = argv[0]
W
wuzewu 已提交
42 43 44 45
        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 已提交
46
        self.args = self.parser.parse_args(argv[1:])
W
wuzewu 已提交
47 48 49 50
        if not self.args.output_path:
            self.args.output_path = "."
        utils.check_path(self.args.output_path)

W
wuzewu 已提交
51
        url = default_hub_server.get_module_url(
W
wuzewu 已提交
52 53 54 55 56 57 58
            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)
            return
W
wuzewu 已提交
59 60 61 62 63 64 65 66

        self.print_args()
        if self.args.uncompress:
            default_downloader.download_file_and_uncompress(
                url=url, save_path=self.args.output_path)
        else:
            default_downloader.download_file(
                url=url, save_path=self.args.output_path)
W
wuzewu 已提交
67 68 69


command = DownloadCommand.instance()