Metadata-Version: 2.1
Name: PyDriveBrowser
Version: 0.1.2
Summary: Command line file Browser for Google Drive
Home-page: https://github.com/basil-huber/PyDriveBrowser
Author: Basil Huber
Author-email: basil.huber@gmail.com
License: Anti-996
Project-URL: Bug Tracker, https://github.com/basil-huber/PyDriveBrowser/issues
Description: PyDriveBrowser
        ==============
        PyDriveBrowser is a simple Command Line Interface to browse through a Google Drive.
        
        It is based on [PyDrive2](https://github.com/iterative/PyDrive2) and [Pick](https://github.com/wong2/pick).
        
        Installation
        ------------
        Install PyDriveBrowser using pip:
        ```
        pip install pydrivebrowser
        ```
        
        To setup credentials (OAuth 2.0 Client IDs) check out the [documentation of PyDrive2](https://docs.iterative.ai/PyDrive2/quickstart/#authentication).
        
        Demo
        ----
        ![demo gif](docs/demo.gif)
        ```
        from cli_browser import CliBrowser
        
        c = CliBrowser()
        url = 'https://drive.google.com/drive/folders/1APzr67aMpXSkcMNlA0rWaJHvMoXwb9o8?usp=sharing'
        f = c.select_file(url)
        print(f'selected file: {f["title"]}')
        ```
        
        Usage
        -----
        Simply pass a google drive url to `CliBrowser.select_file()` and get a `GoogleDriveFile` back.
        For more information about the google drive files and authentication, consult [PyDrive2's documentation](https://docs.iterative.ai/PyDrive2/).
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
