App Engine

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    Favorites, Groups & Events

    App Engine - Presentation Transcript

    1. Google App Engine Django-style
    2. Python Development on Google Infrastructure - Allows deployment of web applications on Google’s famously robust infrastructure. - Google is a big Python shop - Python is the only language initially supported on AppEngine - (“Wordle” Google AppEngine application).
    3. App Engine APIs • Data Store • Images • Mail • Memcache • URL Fetch • Users - Data Store API oers persistent storage in a RDBMS-like environment - Image API oers uploadable images and transformations such as resize, rotate, crop, flip, and the mysterious “I’m feeling lucky” transformation. - Mail API oers email services. - Memcache API oers use of the same memory caching technology used in production Django deployments. - URL Fetch oers HTTP client services, allowing HTTP access to other web services. - Users API oers integration with Google Accounts.
    4. App Engine Basics - We’re going to look briefly at creating “Hello World” as an AppEngine app.
    5. Dev Environment - First you need to download the development environment. - Nice graphical tools available for Windows and OS X - Command line tools otherwise available
    6. Dev Environment - On OS X, the app launcher shows the apps you have available, providing tools to run them locally and deploy them to Google.
    7. Dev Environment dev_appserver.py appcfg.py - Ultimately this is icing over the command line tools that do the work: dev_appserver.py is the development web server. appcfg.py is the tool for uploading your app to Google.
    8. - First you need to create an application at appengine.google.com. - Currently you are limited to 3 applications, and you must live on the namespace .appspot.com.
    9. Vanilla App - From there you can generate a new app. A basic AppEngine app contains three files at minimum: 1. “app.yaml” is a YAML file that identifies basic information about the application, and maps URL patterns to “handlers”. 2. “index.yaml” is a YAML file that is used in conjunction with queries to the Data Store service. 4. “main.py” is the starter “handler” code. It is referenced in “app.yaml”.
    10. app.yaml - specifies meta-data about the application - name - version - specifies “handlers”, somewhat similar to how Apache maps url patterns to handlers. - handlers are python files.
    11. handler: main.py - handler classes subclass RequestHandler - handler is registered by sending the handler class and the context path to a WSGIApplication. - the WSGIApplication is passed to the wsgiref.handlers module (part of standard Python WSGI). (WSGI, the Web Server Gateway Interface, is the standard for Python web applications. It is Django’s goal for 1.0 to be 100% WSGI compliant.) - The Handler implements methods corresponding to HTTP methods. These methods are called when an HTTP request comes in that matches the context path set in the WSGIApplication.
    12. Development Commands • dev_appserver.py django-nyc • appcfg.py update django-nyc - dev_appserver.py runs the development server for that app, analagous to manage.py runserver - appcfg.py will upload the latest version of the application to Google - you must have created the app on the AppEngine console before doing this
    13. Where’s the Django?
    14. The Django Helper project - Google has a project that allows people to adapt Django projects to Google AppEngine - Allows for a higher level of abstraction than the vanilla AppEngine apps provide.
    15. appengine_django - google-app-engine-django provides a new app for you to copy into your project: appengine_django. You need to add it to your INSTALLED_APPS.
    16. app.yaml - app.yaml is mostly the same. - note that /static is routed to a static directory, and not to the python handler
    17. main.py - main.py is supplied by appengine_django. It uses a built in handler to act as the RequestHandler - delegating to the Django framework. - from here the request path becomes standard Django: the settings.py file specifies the main urls.py file, which in turn delegate to other urls.py files, or maps requests to views.
    18. Data Modeling - Google doesn’t use a relational database system in the traditional sense. - The appengine_django app provides an alternate ORM to the application than the standard Django ORM.
    19. - The familiar Poll app, redone in AppEngine. - Note that the *Property objects are analogous to Field classes in the Django ORM
    20. There is no spoon syncdb.
    21. There’s also no admin console. W TF ?
    22. http://localhost:8080/_ah/admin - There is, however, a dierent kind of development admin console that allows browsing of data...
    23. http://localhost:8080/_ah/admin - ...and entry of new data.
    24. Django versions • 0.96 supported out of the box • Later versions (trunk) can be supported by adding Django itself as a module in the application.
    25. Discussion

    + Loren DavieLoren Davie, 2 years ago

    custom

    1218 views, 0 favs, 0 embeds more stats

    A presentation given to django-nyc on June 19th, 20 more

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 1218
      • 1218 on SlideShare
      • 0 from embeds
    • Comments 0
    • Favorites 0
    • Downloads 40
    Most viewed embeds

    more

    All embeds

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories