Minimalistic Google Drive Library for Python
Project description
Drive-in
Minimalistic Google Drive Library for Python.
Table of Contents
Features
-
Authentication: Easily authenticate with Google Drive using OAuth 2.0, and store the access token for future use. Drive-In provides a CLI authentication process, guiding you through token creation.
-
File Upload: Seamlessly upload files to your Google Drive, with support for multi-part uploads. You can specify the file's name and the destination folder.
-
File Download: Download files from Google Drive, also with multipart support. *
-
API Interaction: Interact with the Google Drive API through a simplified interface, making it effortless to perform operations like creating, updating, and deleting files or folders. *
-
Error Handling: Drive-In includes error handling to help you handle unexpected situations, such as failed API requests.
* Due to Authentication Limitations, you can only view and edit files that were created using this tool.
Installation
pip install drive-in
Usage
First, import the library and create an instance of the Drive
class:
from drive_in import Drive
drive = Drive()
This will prompt the user for authentication.
Checking Authentication Status
# Check if the authentication token is valid
if drive.ping():
print("Authentication is successful and server responds well.")
else:
print("Authentication failed.")
Uploading a File
# Upload a file to Google Drive
file_path = "example.txt"
drive.upload(file_path)
Downloading a File
# Download a file from Google Drive
file_id = "your_file_id_here"
downloaded_file = drive.download(file_id)
# if no output target is passed, it is saved to the same name as it has on drive.
# A reference to the file handle is returned.
Accessing other Drive API Endpoints
Other than upload
and download
, you can access REST resources with the HTTP verbs (GET, POST, PATCH, DELETE):
drive.get("files") # perform GET /drive/v3/files
# returns a Result object which has .success (bool) and .data (dict) properties.
# _response and _url internal properties are available if you need access to this raw info.
drive.post("files/123/comments", data=dict(content="...")) # perform POST to create a new comment.
drive.delete("files/123") # perform DELETE /drive/v3/files/123
resource = drive.resource("files") / 123 # dynamically build up the resource string
drive.delete(resource) # also performs DELETE /drive/v3/files/123
See the Google Drive API page for information about available resources.
Authentication
This library works only a public OAuth Client ID. Since it is open source, a secret config or key can not be shared. This leads to some limitations with how much the app can access. Unfortunately, you can only access files created by this app (i.e. uploaded by it).
OAuth Callback
Since oauth requires a callback URL, you're redirected to "https://oauth.trialandsuccess.nl/callback" after logging in. This page simply echoes the access token from the request parameters using oauth-echoer.
You can also provide you own Client ID and callback URL when initializing a Drive instance:
custom_clientid = "123-abc.apps.googleusercontent.com"
custom_url = "https://yoursite.com/callback"
drive = Drive(
client_id=custom_clientid,
redirect_uri=custom_url,
)
License
drive-in
is distributed under the terms of the MIT license.
Disclaimer: This library is not officially affiliated with Google Drive or Google LLC. It is an open-source project created to simplify interactions with Google Drive's API.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file drive_in-0.1.2.tar.gz
.
File metadata
- Download URL: drive_in-0.1.2.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d639c18c93cb5fb31b98af02fb23744e2ad4e1f236a610abdb61ef536455f4c |
|
MD5 | dde91948efe10f3db43c4cf851b456a6 |
|
BLAKE2b-256 | bf311f433bf5998fec335dc8462354b2a5fc1b4e42f04ddf7a9a169653fea56d |
File details
Details for the file drive_in-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: drive_in-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37e254329139a3bb96c3e2b069b75782c38847e1178caa0c616af84d8b18a653 |
|
MD5 | bce7a03b672d4592233773e5fd453fbd |
|
BLAKE2b-256 | 2479e0d190caa1dde0a22731564ffc8b713771cbddd96383ecdd1973e1bb8f5c |