Google Apps Script looks to be pretty perfect for a school project, however I'm not terribly comfortable with JavaScript and the entire rest of the project is going to be done in Python. Is there a way to access it using a Python library? Or do I need to suck it up and learn JavaScript?

This tutorial is the closest thing I've found in my searching and isn't quite what I want.

link|improve this question

You can call other services through Google Apps Script but Google Apps Script itself requires Javascript. – Ankit Jaiswal Feb 9 at 5:15
feedback

4 Answers

up vote 2 down vote accepted

No, Google Apps Script is its own programming language. There are a number of APIs for individual Google Apps, but they are not as comprehensive as what is provided via Google Apps Script. They're generally focused on providing access to the data, and might be suitable if you don't need to edit it.

link|improve this answer
Is there a feasible way to bridge them? Google Apps Script is the only API available for Google Groups, which is what I need. I suppose I could write a Python script for part a, a Google Apps Script for part b, and another Python script for part c, but I'd prefer to avoid that kind of acrobatics. – Zelbinian Feb 9 at 13:54
Perhaps you could automate a web browser via Python, which may be switching one form of acrobatics for another. However, it's likely that you'll need to export the data you want to a spreadsheet via Google Apps Script and then load it into the rest of your Python code. – Tim McNamara Feb 10 at 0:47
feedback

Google Apps Scripts uses Javascript only to manipulate classes of Google products and some more general classes for doing things outside Google. Javascript is the only language.

link|improve this answer
feedback

Python is amazing, and one of its most amazing qualities is being able to serve as a "glue" of sorts between different modules of a system (regardless of language).

My suggestion is to try and make an Adapter/Wrapper around the Javascript commands you will need from Google App Script, exposing pure python functions to the rest of your program so it makes it easier on you. In the end, you will still require to learn some Javascript so... get going.

link|improve this answer
feedback

Google App Engine has a Python SDK

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.