kenken999's picture
test
1f074d8
raw
history blame
275 Bytes
from google_apps_service import GoogleAppsService
def main():
script_id = "your_script_id"
service = GoogleAppsService(script_id)
result = service.execute_script("your_function_name", ["param1", "param2"])
print(result)
if __name__ == "__main__":
main()