Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What sample application demonstrates best practices for MVC structure in a Google App Engine/Python app?

Although I know the Python language, I've never built a significant web app containing a large number of classes.

Now that I am contemplating doing so, I am questioning how best to structure the code in an organized way as I would normally do in a Java application.

Are there any sample Python web apps for App Engine that provide a good example of large-scale code structure?

like image 913
Tony The Fish Salerno Avatar asked May 05 '11 10:05

Tony The Fish Salerno


People also ask

Which of the following command helps to create an App Engine app within the current Google Cloud project?

Run the gcloud app describe command. Open the App Engine Dashboard in the Google Cloud console. The region appears near the top of the page.

What programs support Google App Engine?

Google App Engine primarily supports Go, PHP, Java, Python, Node. js, . NET, and Ruby applications, although it can also support other languages via "custom runtimes". The service is free up to a certain level of consumed resources and only in standard environment but not in flexible environment.


2 Answers

I recommend checking out Bloggart and rietveld.

For more, here's a list of App Engine samples, a big list of open-source App Engine projects, and another one.

like image 68
Drew Sears Avatar answered Nov 12 '22 21:11

Drew Sears


rietveld, by Guido van Rossum (Python creator) is a Django app built on GAE and is a good one to check out.

like image 23
RyanW Avatar answered Nov 12 '22 21:11

RyanW