[google-appengine] Re: Initializing datastore with binary data

2009-04-09 Thread an0
Now it works, so it seems a server side problem that has been fixed. On Apr 8, 6:37 pm, an0 an0...@gmail.com wrote: I met the same error. My python version is 2.5.4. Anyone know how to fix it? On Mar 7, 4:54 am, Pavel Byles pavelby...@gmail.com wrote: I have no idea why I'm getting errors

[google-appengine] Re: Initializing datastore with binary data

2009-04-08 Thread an0
I met the same error. My python version is 2.5.4. Anyone know how to fix it? On Mar 7, 4:54 am, Pavel Byles pavelby...@gmail.com wrote: I have no idea why I'm getting errors when I do: import helloworld from google.appengine.ext import db entries =

[google-appengine] Re: Initializing datastore with binary data

2009-04-08 Thread an0
But my order seems right: handlers: - url: /remote_api script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py login: admin - url: /abc script: abc.py login: admin - url: /.* script: abc.py On Mar 18, 7:49 pm, Nick Johnson arach...@notdot.net wrote: You're probably putting the

[google-appengine] Re: Initializing datastore with binary data

2009-03-18 Thread Nick Johnson
You're probably putting the remote_api handler _after_ your catchall handler. What does your app.yaml file look like? -Nick Johnson On Mar 6, 8:54 pm, Pavel Byles pavelby...@gmail.com wrote: I have no idea why I'm getting errors when I do: import helloworld from google.appengine.ext

[google-appengine] Re: Initializing datastore with binary data

2009-03-10 Thread hideki
I got same issue but it was fixed after I deployed my project with - url: /remote_api script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py login: admin On Mar 8, 10:29 am, Pavel Byles pavelby...@gmail.com wrote: When I follow the article

[google-appengine] Re: Initializing datastore with binary data

2009-03-08 Thread Pavel Byles
When I follow the article from: http://code.google.com/appengine/articles/bulkload.html I get this error: INFO 2009-03-08 11:22:39,197 bulkload_client.py] Starting import; maximum 10 entities per post INFO 2009-03-08 11:22:39,210 bulkload_client.py] Importing 2 entities in 28 bytes

[google-appengine] Re: Initializing datastore with binary data

2009-03-06 Thread Pavel Byles
I have no idea why I'm getting errors when I do: import helloworld from google.appengine.ext import db entries = helloworld.Greeting.all().order(-date).fetch(10) and my app.yaml contains: - url: /remote_api script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py login: admin The

[google-appengine] Re: Initializing datastore with binary data

2009-03-04 Thread Nick Johnson
You can do what you want with remote_api and a little custom code. See the article here: http://code.google.com/appengine/articles/remote_api.html -Nick Johnson On Mar 4, 3:04 am, Pavel Byles pavelby...@gmail.com wrote: Is there a way to initialize the datastore with binary data to be stored

[google-appengine] Re: Initializing datastore with binary data

2009-03-04 Thread Pavel Byles
Thanks Nick. I will definitely try this. -Pavel On Mar 4, 9:18 am, Nick Johnson arach...@notdot.net wrote: You can do what you want with remote_api and a little custom code. See the article here:http://code.google.com/appengine/articles/remote_api.html -Nick Johnson On Mar 4, 3:04 am,