download.py 2.0 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 22
from paddle_hub.tools import utils
from paddle_hub.tools.downloader import default_downloader
from paddle_hub.module.manager import default_manager
W
wuzewu 已提交
23 24 25 26 27


class DownloadCommand(BaseCommand):
    def __init__(self):
        super(DownloadCommand, self).__init__()
W
wuzewu 已提交
28 29 30 31
        # 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 已提交
32 33

    def help(self):
W
wuzewu 已提交
34
        self.parser.print_help()
W
wuzewu 已提交
35 36

    def exec(self, argv):
W
wuzewu 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
        module_name = argv[1]
        self.args = self.parser.parse_args(argv[2:])
        if not self.args.output_path:
            self.args.output_path = "."
        utils.check_path(self.args.output_path)

        url = default_downloader.get_module_url(module_name)
        assert url, "can't found module %s" % module_name

        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 已提交
53 54 55


command = DownloadCommand.instance()