We had an interesting Google Sites idea for teaching get floated yesterday.... Q. Could you automatically create a Google Site for a list of students that only they and their tutor can see? Also, at a given time could the students' permission be changed from "writer" to "reader" when the deadline had arrived? It'd be good if you could use a Template Site so that the site could be set up with the right pages and prompts to begin with. With the GData API it is possible. Here's an example python script that shows how... First, load the libraries. You may need to download these if you don't have them already. import atom.data import gdata.sites.client import gdata.sites.data from time import sleep I then created lots of stub functions in the hope that I could better understand how the API works. The problem ( for me ) here was that ... a. This code uses a now old fashioned means of connecting to the API. If this was going to be "
Collaborative Tools Project