You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suggestion.
In order to send the data from gsheet (or any other supported source) to info.c19.md you can also use Zapier for free https://zapier.com/home and only handle the request from Zapier webhook in your app, instead of integrating google api/sdk and so.
path to API from google sheet here change 1 to 2 to get the second sheet
here is some code to get the table out of API, need to be changed to js and update the variable from data.js
data = jsonFromAPI get request
cols = max([int(i['gs$cell']['col']) for i in data['feed']['entry']])
rows = max([int(i['gs$cell']['row']) for i in data['feed']['entry']])
df = [['' for i in range(cols)] for j in range(rows)]
for i in data['feed']['entry']:
col = int(i['gs$cell']['col'])
row = int(i['gs$cell']['row'])
#print(i['gs$cell'])
df[row-1][col-1] = i['gs$cell']['inputValue']
the API from the GIS is not available anymore, they ask for a token
@alexkingdom o sa faca un rest api si o sa puna in public. Datele o sa fie luate de la gis. Dupa detalii la mine @grigore-fiodorov sau la @alexkingdom
The text was updated successfully, but these errors were encountered: