Google Drive direct download of big files.
Project description
# gdown
[](https://pypi.python.org/pypi/gdown)
[](https://travis-ci.org/wkentaro/gdown)
Download a large file from Google Drive.
If you use curl/wget, it fails with a large file because of
the security warning from Google Drive.
## Installation
```bash
pip install gdown
```
## Usage
### From Command Line
```bash
$ # gdown [-h] [-V] [-O OUTPUT] [-q] [--id] url_or_id
$ # a large file (~400MB)
$ gdown https://drive.google.com/uc?id=0B_NiLAzvehC9R2stRmQyM3ZiVjQ
$ # gdown --id 0B_NiLAzvehC9R2stRmQyM3ZiVjQ
$ md5sum pose_estimation_2d_chainermodel.pkl
587933c2c0adf335ebed0486c183541f
$ # a small file
$ gdown https://drive.google.com/uc?id=0B9P1L--7Wd2vU3VUVlFnbTgtS2c
$ cat spam.txt
spam
$ # as an alternative to curl/wget
$ gdown https://httpbin.org/ip -O ip.json
$ cat ip.json
{
"origin": "126.169.213.247"
}
$ # write stdout and pipe to extract
$ gdown https://drive.google.com/uc?id=0B9P1L--7Wd2vNm9zMTJWOGxobkU -O - --quiet | tar zxvf -
$ ls 20150428_collected_images/
$ # it can handle urls created from [Share] -> [Copy Url] on Google Drive
$ gdown 'https://drive.google.com/a/jsk.imi.i.u-tokyo.ac.jp/uc?id=0B_NiLAzvehC9R2stRmQyM3ZiVjQ'
```
### From Python
```python
import gdown
url = 'https://drive.google.com/uc?id=0B9P1L--7Wd2vU3VUVlFnbTgtS2c'
output = 'spam.txt'
gdown.download(url, output, quiet=False)
```
## License
See [LICENSE](LICENSE).
[](https://pypi.python.org/pypi/gdown)
[](https://travis-ci.org/wkentaro/gdown)
Download a large file from Google Drive.
If you use curl/wget, it fails with a large file because of
the security warning from Google Drive.
## Installation
```bash
pip install gdown
```
## Usage
### From Command Line
```bash
$ # gdown [-h] [-V] [-O OUTPUT] [-q] [--id] url_or_id
$ # a large file (~400MB)
$ gdown https://drive.google.com/uc?id=0B_NiLAzvehC9R2stRmQyM3ZiVjQ
$ # gdown --id 0B_NiLAzvehC9R2stRmQyM3ZiVjQ
$ md5sum pose_estimation_2d_chainermodel.pkl
587933c2c0adf335ebed0486c183541f
$ # a small file
$ gdown https://drive.google.com/uc?id=0B9P1L--7Wd2vU3VUVlFnbTgtS2c
$ cat spam.txt
spam
$ # as an alternative to curl/wget
$ gdown https://httpbin.org/ip -O ip.json
$ cat ip.json
{
"origin": "126.169.213.247"
}
$ # write stdout and pipe to extract
$ gdown https://drive.google.com/uc?id=0B9P1L--7Wd2vNm9zMTJWOGxobkU -O - --quiet | tar zxvf -
$ ls 20150428_collected_images/
$ # it can handle urls created from [Share] -> [Copy Url] on Google Drive
$ gdown 'https://drive.google.com/a/jsk.imi.i.u-tokyo.ac.jp/uc?id=0B_NiLAzvehC9R2stRmQyM3ZiVjQ'
```
### From Python
```python
import gdown
url = 'https://drive.google.com/uc?id=0B9P1L--7Wd2vU3VUVlFnbTgtS2c'
output = 'spam.txt'
gdown.download(url, output, quiet=False)
```
## License
See [LICENSE](LICENSE).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gdown-3.6.2.tar.gz
(4.6 kB
view details)
File details
Details for the file gdown-3.6.2.tar.gz
.
File metadata
- Download URL: gdown-3.6.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b22836fbd5b7ea800e514dd39b010a6f5fb4c6dad5dd9ca19c29127337f0c8f0
|
|
MD5 |
434d2bafa5bea4be572bcfdbca6ab6b1
|
|
BLAKE2b-256 |
77a8bafb5e06c1d413bff0c51be652a0997f042a586806bb821c759cec557207
|