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
with open("image_path.png") as fp:
image_bytes = fp.read()
media = ...
image_bytes_b64 = base64.urlsafe_b64encode(image_bytes).decode('utf-8')
metadata = {
'contentHints': {
'thumbnail': {
'image': image_bytes_b64,
"mimeType": "image/png"
}
}
}
gdw.upload(media, **metadata)
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.4.tar.gz
(3.2 kB
view hashes)
Built Distribution
Close
Hashes for gdrivewrapper-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f9f3aa5c207e88b2bb17afff73fc4596e407a51629bbaf9e19e663ae863cdde |
|
MD5 | c0a22da054103571f0c3468350c1c6bb |
|
BLAKE2b-256 | e589758cdc1ce7db4fdd12432075d914f6eec1489fe8d6ac68e4a52bac7728dc |