Metadata-Version: 2.0
Name: gdrivedownload
Version: 1.0.0
Summary: Simple script that downloads all files from given Google Drive directory
Home-page: https://github.com/m4tx/gdrivedownload
Author: Mateusz Maćkowski
Author-email: m4tx@m4tx.pl
License: MIT
Keywords: google drive api batch download
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Utilities
Requires-Dist: google-api-python-client (>=1.5.0,<2)

==============
gdrivedownload
==============

Simple script that downloads all files from given Google Drive folder.

Requirements
------------

* Python 3.2+

Installation
------------
::

    pip install gdrivedownload


Usage
-----
::

    gdrivedownload client_id client_secret folder_id out_path


* `client_id` - Google Drive OAuth2 client ID
* `client_secret` - Google Drive OAuth2 secret key
* `folder_id` - Google Drive folder ID (usually the last part of the URL,
    like `https://drive.google.com/drive/u/0/folders/<folder_id>`)
* `out_path` - output directory to put the files into. Will be created recursively if does not exist

OAuth2 keys can be obtained using `Google Developer Console <https://console.developers.google.com/>`_. Create a project,
then generate OAuth2 credentials for `Other` application type.


