File size: 275 Bytes
1f074d8
df50319
 
1f074d8
 
 
 
df50319
 
 
1
2
3
4
5
6
7
8
9
10
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()