views:

44

answers:

1

How Google App instance can get the list of developers (like in Administration > Developers).

Hard-coding developer's email is a bad idea because nothing lasts forever.

I would like to get a solution in python (because I don't know java).

+2  A: 

There's no way to do this programmatically, currently. If you only need to email all the admins, however, you can use send_mail_to_admins.

Nick Johnson
Thank you. I knew about "send_mail_to_admins(sender, subject, body, **kw)", but what should I do with 'sender'? If is not in developers I'm getting "Unauthorized sender Traceback". How can I not use 'sender' at all (or get it from App Engine instance)?
Oleksandr Bolotov
You need to specify sender in a configuration file somewhere, or get it from the logged in user, unfortunately.
Nick Johnson