/scmsheet

Primary LanguagePython

GitHub repo size GitHub Repo stars

Install

pip install git+https://github.com/sangcamap/scmsheet.git

🙌 Goals!

Init

from scmsheet import GoogleSheet

tool = GoogleSheet(
    secret_key_path="secret_key.json",
    sheet_key="1jwyagmLBOKaAYrrWiZr6sMp9C0VZMEXXXXXXXXXX"
)

Read all data

tool.get_all_data(tab="YOUR_TAB")

Insert new row

tool.insert_data(tab="YOUR_TAB", new_row= ["Hi there", "Bobs!"])