Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliaio/googledrive.jl
Automate Google-Drive download in Julia
https://github.com/juliaio/googledrive.jl
googledrive-downloader julia
Last synced: 3 months ago
JSON representation
Automate Google-Drive download in Julia
- Host: GitHub
- URL: https://github.com/juliaio/googledrive.jl
- Owner: JuliaIO
- License: mit
- Created: 2020-01-12T07:04:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T15:19:12.000Z (10 months ago)
- Last Synced: 2024-10-03T05:06:01.649Z (4 months ago)
- Topics: googledrive-downloader, julia
- Language: Julia
- Homepage:
- Size: 252 KB
- Stars: 24
- Watchers: 5
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GoogleDrive
Download files from Google Drive.https://github.com/JuliaIO/GoogleDrive.jl
[![action status][action-img]][action-url]
[![pkgeval status][pkgeval-img]][pkgeval-url]
[![codecov][codecov-img]][codecov-url]
[![license][license-img]][license-url]
[![docs-stable][docs-stable-img]][docs-stable-url]
[![docs-dev][docs-dev-img]][docs-dev-url]## Introduction
GoogleDrive.jl provides support for downloading files from Google Drive and Google Sheets.
### Installation
Install the package using the
[julia package manager](https://julialang.github.io/Pkg.jl/v1/managing-packages/#Adding-packages-1):Open the REPL, press ] to enter package mode, and then:
```julia
pkg> add GoogleDrive
```## Details
To download data into an IO stream from a special URL of the form
`url = "https://docs.google.com/uc?export=download&id=1GqmszfSB_LHGQEQpSjoiPyDROZ5a8Ls4"`,
use the following code:```julia
using Downloads: download
io = IOBuffer()
download(url, io)
str = String(take!(io)) # (this line for text data only)
```To download data from a typical Google Drive URL of the form
`url = "https://drive.google.com/file/d/1GqmszfSB_LHGQEQpSjoiPyDROZ5a8Ls4"`,
use the following code
that converts the URL internally for convenience:```julia
using GoogleDrive: google_download
io = IOBuffer()
google_download(url, io)
str = String(take!(io)) # (this line for text data only)
```## Contributing and Reporting Bugs
Contributions, in the form of bug-reports, pull requests, additional documentation are encouraged. They can be made to the Github repository.
**All contributions and communications should abide by the
[Julia Community Standards](https://julialang.org/community/standards/).**[action-img]: https://github.com/JuliaIO/GoogleDrive.jl/workflows/CI/badge.svg
[action-url]: https://github.com/JuliaIO/GoogleDrive.jl/actions
[build-img]: https://github.com/JuliaIO/GoogleDrive.jl/workflows/CI/badge.svg?branch=master
[build-url]: https://github.com/JuliaIO/GoogleDrive.jl/actions?query=workflow%3ACI+branch%3Amaster
[pkgeval-img]: https://juliaci.github.io/NanosoldierReports/pkgeval_badges/G/GoogleDrive.svg
[pkgeval-url]: https://juliaci.github.io/NanosoldierReports/pkgeval_badges/G/GoogleDrive.html
[codecov-img]: https://codecov.io/github/JuliaIO/GoogleDrive.jl/coverage.svg?branch=master
[codecov-url]: https://codecov.io/github/JuliaIO/GoogleDrive.jl?branch=master
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-stable-url]: https://JuliaIO.github.io/GoogleDrive.jl/stable
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
[docs-dev-url]: https://JuliaIO.github.io/GoogleDrive.jl/dev
[license-img]: https://img.shields.io/badge/license-MIT-brightgreen.svg
[license-url]: LICENSE