Re: [google-appengine] Is there anyway to use classes that aren't supported by appengine sandbox locally?

2011-02-05 Thread Herbert Fischer
You can use a master folder for your files. project\ - scripts\ - gae_project\ On Sat, Feb 5, 2011 at 19:21, nacho wrote: > I need to run a console application that fetchs the content of a url an > writes (locally) in a file of my project. > > I can't get this running because appengine san

[google-appengine] Re: How to modify a model instance property's value by a string property name

2011-01-24 Thread Herbert Fischer
Sorry, I've sent this e-mail after two hours trying to find out, and a few minutes after I sent this e-mail I found how to use setattr() function. thanks anyway On Mon, Jan 24, 2011 at 23:42, Herbert Fischer wrote: > Hi, > > I need to modify a property value by using a property

[google-appengine] How to modify a model instance property's value by a string property name

2011-01-24 Thread Herbert Fischer
Hi, I need to modify a property value by using a property name in string format as exemplified in the line marked with >>> below: import model task = model.Task.get_by_id(1) property = 'description' new_value = 'hakuna matata' >>> task[property] = new_value task.put() How this can be done? than

Re: [google-appengine] AppEngine with MySQL

2010-09-23 Thread Herbert Fischer
There is no way to do this. On Thu, Sep 23, 2010 at 12:56, David Toledo wrote: > Hi All > > Exist some way from connect Mysql database in appengine and if is possible > where can found this info or examples? > > Thanks > David > > > -- > You received this message because you are subscribed to t

Re: [google-appengine] Is there a way a plugin development happens in google app engine.

2010-08-18 Thread Herbert Fischer
The only way to do this is uploading files using GAE SDK. I'm working in a different way, but using DB and I don't know if this will have good performance. On Tue, Aug 17, 2010 at 23:32, Chandrashekar < chandrashekar.vijayar...@gmail.com> wrote: > For example, > if you want to add a commnity pa