-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgoogle_sheet_demo.py
77 lines (65 loc) · 2.24 KB
/
google_sheet_demo.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# -*- coding: utf-8 -*-
"""
Created on Fri Oct 28 10:03:01 2022
@author: 靳笑宇
"""
import streamlit as st
from pandas import DataFrame
import pandas as pd
from gspread_pandas import Spread,Client
from google.oauth2 import service_account
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
# Create a Google Authentication connection object
scope = ["https://www.googleapis.com/auth/spreadsheets",
'https://www.googleapis.com/auth/drive']
credentials = service_account.Credentials.from_service_account_info(
st.secrets["gcp_service_account"],
scopes=scope)
#%%
client = Client(scope=scope,creds=credentials)
spreadsheetname = "Energy_Dataset_Intro_List_1017"
spread = Spread(spreadsheetname,client = client)
#%%
# Check the connection
st.write(spread.url)
sh = client.open(spreadsheetname)
worksheet_list = sh.worksheets()
# Functions
@st.cache()
# Get our worksheet names
def worksheet_names():
sheet_names = []
for sheet in worksheet_list:
sheet_names.append(sheet.title)
return sheet_names
# Get the sheet as dataframe
def load_the_spreadsheet(spreadsheetname):
worksheet = sh.worksheet(spreadsheetname)
df = DataFrame(worksheet.get_all_records())
return df
# Update to Sheet
def update_the_spreadsheet(spreadsheetname,dataframe):
#col = ['Dataset Full Name','URL']
spread.df_to_sheet(dataframe,sheet = spreadsheetname,index= False)
st.sidebar.info('✅ Submitted succussfully! Thank you for contributing!')
#%%
st.header('Building Energy and Water Data')
what_sheets = 'Aggregation'
worksheet = sh.worksheet(what_sheets)
#%%
#Load the datasets
df = DataFrame(worksheet.get_all_records(head=1))
#%%
add = st.sidebar.checkbox('Add New Dataset')
if add :
name_entry = st.sidebar.text_input('Dataset Name')
url_entry = st.sidebar.text_input('URL')
confirm_input = st.sidebar.button('Confirm')
if confirm_input:
opt = {'Dataset Full Name': [name_entry],
'URL' : [url_entry]}
opt_df = DataFrame(opt)
df = load_the_spreadsheet('Aggregation')
new_df = pd.concat([df, opt_df], sort=False)
update_the_spreadsheet('Aggregation',new_df)