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() |