Metadata-Version: 1.1
Name: gdown
Version: 3.4.5
Summary: Google Drive direct download of big files.
Home-page: http://github.com/wkentaro/gdown
Author: Kentaro Wada
Author-email: www.kentaro.wada@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: # gdown
        
        [![PyPi Version](https://img.shields.io/pypi/v/gdown.svg)](https://pypi.python.org/pypi/gdown)
        [![Travis Status](https://travis-ci.org/wkentaro/gdown.svg?branch=master)](https://travis-ci.org/wkentaro/gdown)
        
        Wget for files at Google Drive.
        
        
        ## Installation
        
        ```bash
        pip install gdown
        ```
        
        
        ## Usage
        
        ```bash
        $ # gdown URL [-O FILENAME]
        
        $ gdown https://drive.google.com/uc?id=0B9P1L--7Wd2vU3VUVlFnbTgtS2c
        $ cat spam.txt
        spam
        
        $ gdown --id 0B9P1L--7Wd2vU3VUVlFnbTgtS2c
        $ cat spam.txt
        spam
        
        $ gdown https://httpbin.org/ip -O ip.json
        $ cat ip.json
        % cat ip
        {
          "origin": "126.169.213.247"
        }
        ```
        
Keywords: utility
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Topic :: Internet :: WWW/HTTP
