Skip to content

Instantly share code, notes, and snippets.

View ab9801's full-sized avatar

Abinav ab9801

View GitHub Profile
@prasathmani
prasathmani / upload-to-google-drive.py
Last active May 3, 2024 11:40
upload files to google drive using python
import requests, json
# Get refresh token from google drive api
# Generating a refresh token for DRIVE API calls using the OAuth playground
# https://www.youtube.com/watch?v=hfWe1gPCnzc
def getToken():
oauth = 'https://www.googleapis.com/oauth2/v4/token' # Google API oauth url
headers = {'content-type': 'application/x-www-form-urlencoded'}
data = {
'grant_type': 'refresh_token',