-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsheet.py
26 lines (17 loc) · 877 Bytes
/
sheet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import gspread, os
from oauth2client.service_account import ServiceAccountCredentials # para usar credenciales
# Definir el límite de acceso, el scope = alcance, acceso a hojas de cálculo y drive
alcance = ['https://www.googleapis.com/auth/spreadsheets',
'https://www.googleapis.com/auth/drive']
if os.name == 'nt':
Credenciales = ServiceAccountCredentials.from_json_keyfile_name('\\Python\\Credenciales.json', alcance)
else:
Credenciales = ServiceAccountCredentials.from_json_keyfile_name('./Credenciales.json', alcance)
cliente = gspread.authorize(Credenciales)
# Abre la hoja de cálculo y actualiza los datos
def Actualizar_Hoja(nombre_hoja, datafame):
hoja = cliente.open(nombre_hoja).sheet1
hoja.clear()
cabecera = datafame.columns.values.tolist()
datos = datafame.values.tolist()
hoja.update([cabecera] + datos)