A wrapper around Google Drive SDK
Project description
gdrivewrapper
A wrapper around Google Drive SDK. Covers basic operations like uploading a file or creating a folder.
Usage
Initiate the wrapper class
from gdrivewrapper import GDriveWrapper
api_scope = "https://www.googleapis.com/auth/drive.file"
creds_path = "./drive_v3_creds.json"
gdw = GDriveWrapper(api_scope, creds_path)
Upload a local file
from googleapiclient.http import MediaFileUpload
local_path = "/tmp/resources/hello.txt"
media = MediaFileUpload(local_path)
gdw.upload(media)
Upload a string
from googleapiclient.http import MediaInMemoryUpload
my_bytearray = "my string :)".encode('utf-8')
media = MediaInMemoryUpload(my_bytearray)
gdw.upload(media)
Upload with a filename
media = ...
gdw.upload(media, name="mytextfile.txt")
Upload with a thumbnail
import base64
media = ...
with open("image_path.png") as fp:
image_bytes = fp.read()
gdw.upload(media, thumbnail=image_bytes)
Upload to a folder
response = gdw.create_folder("myfolder1")
media = ...
gdw.upload(media, folder_id=response["id"])
Add a comment to an existing file
media = ...
response = gdw.upload(media)
gdw.create_comment(key=response["id"], comment="this file is great!")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gdrivewrapper-0.0.17.tar.gz
(3.7 kB
view hashes)
Built Distribution
Close
Hashes for gdrivewrapper-0.0.17-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9803651ffd1b3642b69f9eaabb685f848370e1bb0d2dfe362697e7a8dc0409e6 |
|
MD5 | d053d0006ac03856ba78405ec46b69d4 |
|
BLAKE2b-256 | f7f7f96896105f4e31f952d2a2bc233093a6dc28d32d31de6ab026736a03e522 |