Live data from Hacker News

Djangae – Run Django on Google App Engine

p.ota.to

1–10 of 18 posts

Re: Djangae – Run Django on Google App Engine

#4

I haven't used either approach, but how does using this project compare to just using NDB directly with the Django middleware? https://cloud.google.com/appengine/docs/python/ndb/#integrat...

Djangae lets you use the Django ORM with the Datastore, meaning you don't have to use NDB. It also has lots of other helpers for things like deferred tasks.

The Django NDB middleware written by Google, as far as I can work out, just makes sure that writes are flushed. You still have to define and query your models using NDB syntax.

Re: Djangae – Run Django on Google App Engine

#9
As Django developer for over 6 years, sorry guys I don't see the benefits of hacking the framework in this case. I know so many people love django out there and try to apply it as much as they can. When you think you go with the-easy-thing, you're going to make it harder.

BTW, depending on the purpose, I will go with another frameworks, even another languages.

Re: Djangae – Run Django on Google App Engine

#10
post #6

Is there any benefit to using the Datastore, as opposed to CloudSQL?

CloudSQL works great for django, I suppose that these attempts to port django to cloudstore are looking for the free tier that is provided. In theory you could host an app for free if it's small and uses the datastore. While with cloudSQL you'd have to spend some money
Post reply on HN