Showing posts with label PyDrive. Show all posts
Showing posts with label PyDrive. Show all posts

2016/10/30

PyDrive Quick Overview - File Management

Here is the sample code for creating a file called "Hello.txt" on Google Drive and add "Hello World!!" as its content using PyDrive.

Create a new file on Google Drive and add its content

2016/10/26

PyDrive Quick Overview - Authentication and File Listing - PyDrive vs Drive API Python

I came across PyDrive (https://pythonhosted.org/PyDrive/index.html) while trying to learn how to use Python to access Google Drive via Google Drive API. For someone struggling to understand how to use the Google Drive API, I think it's a godsend to have PyDrive..

OAuth2 authentication

Using PyDrive

1
2
3
4
from pydrive.auth import GoogleAuth

gauth = GoogleAuth()
gauth.LocalWebserverAuth() # Creates local webserver and auto handles authentication.