Skip to content

Releases: PerfecXX/MicroPython-GoogleSheet

V0.0.5

15 Sep 09:08
049563e
Compare
Choose a tag to compare

V0.0.5

  • Fix the getRow and getColumn functions (forgot to complete the code and uploaded the wrong file).

v.0.04

15 Sep 08:55
4bffe2b
Compare
Choose a tag to compare

Version 0.0.4

  • Add the getRow and getColumn functions to split the data from Google App Script using a comma as a separator.
  • Change the getRow and getColumn functions to return the data as a list instead of a string.

V0.0.3

13 Dec 04:00
7ae00d7
Compare
Choose a tag to compare

Version 0.0.3

Fix issue provided by KorkhovPavel

ggsheet.py

  • Improve the start_index and end_index finders in getCell(), getColumn(), and getRow().
  • Fix the index range of the returned data from getCell(), getColumn(), and getRow().
  • Sync the gen_scriptFile() to script.gs version 0.0.3.

script.gs

  • Add "start" and "finish" to the getCell, getColumn, and getRow HTML headers.
  • Fix the html title name from "Get Row Data" to "Get Column Data" in get column data mode.

0.0.2

20 Sep 18:57
b58b064
Compare
Choose a tag to compare

Version 0.0.2

The sync version between GitHub and PyPi

Connect to your Google Sheet by using Google App Script and MicroPython.

Feature

  • create the Google App Script file
  • Update the data to a specific cell
  • Get the data from a specific cell
  • Delete the data from a specific cell
  • Append the data to a specific row
  • Update the data in a specific row
  • Get all of the data from a specific row
  • Delete the data in a specific row
  • Append the data to a specific column
  • Update the data to a specific column
  • Get all of the data from a specific column
  • Delete the data in a specific column