Skip to content

Package to download files from google drive given shared link

License

Notifications You must be signed in to change notification settings

deven96/drive_downloader

Repository files navigation

GdDownloader

Package to download files from google drive given shared link

Build Status PyPI versionQuality Gate Coverage Status

Installation

    pip install gddownloader

Development

    git clone [email protected]:deven96/drive_downloader.git

Documentation

Github Pages

Running the tests

    cd drive_downloader/gddownloader/
    python tests/__init__.py

Usage

Files can be downloaded from google drive providing one has a valid shared link. One of two ways can be used to download the files : Single or according to an example csv

    from gddownloader.core import GDownloader, CsvGDownloader

    # Single download
    share_link = r"https://drive.google.com/open?id=1Rp4Pu257IlfuoFX3sEarm8Mgl75vi1U5"
    dwnloader = GDownloader(share_link)
    print(gdwnloader.download_link)
    dwnloader.download()

    # multiple download with csv
    csv_path = "example.csv"
    csvdwnloader = CsvGDownloader(csv_path)
    print(round(csvdwnloader.total_size, 0))
    csvdwnloader.download()

Contribution

You are very welcome to modify and use them in your own projects.

Please keep a link to the original repository. If you have made a fork with substantial modifications that you feel may be useful, then please open a new issue on GitHub with a link and short description.

License (MIT)

This project is opened under the MIT 2.0 License which allows very broad use for both academic and commercial purposes.

About

Package to download files from google drive given shared link

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •