Projects tagged ‘appengine’, ‘django’, and ‘gae’


Jump to tag:

Projects tagged ‘appengine’, ‘django’, and ‘gae’

Filtered by Project Tags appengine django gae

Refine results Project Tags python (11) web (3) appspot (2) blog (2) cache (2) chat (1) assistant (1) jquery (1) template (1) app (1) soho (1) ai (1)

[13 total ]

9 Users

With app-engine-patch a major part of Django works on App Engine without any modifications. An important feature is use of Google's native 'Model' class to interact with the 'Big Table' database ... [More] , rather than the Django ORM. This has the advantage that you can use new datastore features as soon as they get released, and code optimized for the App Engine Datastore can be reused from both Django and WebApp projects. Many optional, useful extras are provided in the companion 'ragendja' library to speed up your App Engine development. [Less]
Created 12 months ago.

0 Users

Online chat, built on XMPP protocol, working on GAE
Created about 1 month ago.

0 Users

This project managers the IT requirements for the SohoScheduler Project
Created 11 months ago.

0 Users

Artifical Intelligence Assistant (AIA)AIA is an assistant that can do tasks like keeping accounts, arranging TODOs and so on intelligently.AIA is a web site developed based on Google App Engine. ... [More] More informatin in: http://aiassistant.appspot.com/chat/ [Less]
Created 11 months ago.

0 Users

Java 构建基于 Google AppEngine 的 Blog
Created 3 months ago.

0 Users

The Google App Engine does not let users change/add/delete files so there is a need to have the Django templates stored in the Google DB. Project uses GAE ,Django, GAE Helper for Django/appenginepatch ... [More] after release r4 we will release with preference for appenginepatch integration since appenginepatch sees much more active development than GAE Helper for Django source code location (mercurial repository) for the appenginepatch port is hosted at assembla.com (see wiki) also included all necessary libs in the release to provide an easy start. installation is much simpler now. known issues/limitations: neotek is unable to do a browse/update on records. only insert works for now. [Less]
Created about 1 year ago.

0 Users

this project is the GAE http://realpython.appspot.com/, the code is available NOW! you can download it here:http://realpython.googlecode.com/files/realpython.tar.gz (it inclide the app engine pache ... [More] and django) or you can view the source here:http://code.google.com/p/realpython/source/browse/ (it include realpyhton source only) [Less]
Created 2 months ago.

0 Users

GAWareAboutGAWare is microblog(like twitter) application for Google Apps users. GAWare powered by Google App Engine. FunctionsMicroblog (status, photo...) Profile Group etc... DocumentsEnglish ... [More] 日本語 LinksDiscussions at google groups Members at google groups Google Apps Google App Engine MessageI love python, the same as everyone else! So, I developing groupware for small office, schools, and any organization. I need your advice, help, and volunteer. Source code reviewer, adviser(for more beautiful codes) CSS Coder(valid xhtml & css) Localiser(my english is very poor) Documenter etc Love, Kosei...〆(.. ) [Less]
Created about 1 year ago.

0 Users

This applications aims to find the most core values of a given society. More information will be available as it gets developed.
Created 3 months ago.

0 Users

Welcome to Django-gae-cacheThis project contains Django middleware and Google App Engine application. MotivationI have few small web application on poor VPS (Virtual Private Server). Because there ... [More] is everything on single server (Django, MySQL server, static content), I though how to lower server load/save memory/whatever. And this project is a result of my invention. Using this application, you will save bandwidth, memory and CPU load of your web server, because all static resources will be served with Google App Engine. Installation InstructionsThese instructions was written for version 1.0.0, but following versions are backward compatible. Download and installInstall package using distutils: svn checkout http://django-gae-cache.googlecode.com/svn/trunk/ django-gae-cache cd django-gae-cache sudo python setup.py installUpdate your settings.py... and add the middleware and installed apps settings: # Something long and unpredictable GAE_CACHE_SECRET_KEY = 'qwertyuiop' # URL of your google app GAE_CACHE_URL = 'http://yourapp.appspot.com' # Turn on/off GAE cache GAE_CACHE_USE = True MIDDLEWARE_CLASSES = ( ... 'django_gae_cache.middleware.DjangoGaeCacheMiddleware', ... ) INSTALLED_APPS = ( ... 'django_gae_cache', ... )Signup for Google app engine... and download Google SDK to your computer. http://code.google.com/appengine/ Configure GAE applicationGo to PACKAGE_DIR/gae-cache, copy _app.yaml to app.yaml and _config.py to config.py In app.yaml, replace YourAppName with name of your Google App Engine application. In config.py, fill SOURCE_URL with name of your site. Also set up SECRET_KEY to the same string, as is settings.GAE_CACHE_SECRET_KEY in your Django application. Also set MEDIA_URL to the same string, as is settings.MEDIA_URL in your Django application. Deploy GAE applicationIn PACKAGE_DIR/gae-cache, run "appcfg.py update ." (appcfg.py is part of GAE SDK, which you downloaded in 3rd step). Now visit http://yourapp.appspot.com. You should be redirected to your site or see 403 Forbidden (depends on gae-cache configuration). It is OK. Find some existing resource file on your site (http://yourdjangosite.com/media_url/some_file.jpg and call them thru appspot: http://yourapp.appspot.com/media_url/some_file.jpg. Working? Great! UsageCaching mechanism is working out of the box. Immediately after setting up middleware and GAE application, your HTML pages are searched for hyperlinks to static resources and replaced by URL to the same resource using GAE application. On first call of resource, GAE application downloads static resource from your server and save it into memcache. On next request, resource is loaded from memcache, without request to your web server. Invalidate cacheSometimes you want to change or delete resource. You can invalidate one specific file or whole GAE cache: from django_gae_cache import api a = api.Api() a.Invalidate('/relative/path/to/resource.jpg') # or a.InvalidateAll()That's all! You can use that for example in save()/delete() method of your Resource model. Memcache principeOn GAE application, resources are stored in memcache structures (there is 10GB free quota on GAE, which is enough for middle-size site). Memcache will free the oldest unused resources, when there application need space for newer resource. It means, we don't care of any advanced cache management, because in memcache are the most useful items at every time... TODOMy web application is far to GAE quota limits, so GAE cache dont have any fallback mechanism yet. It means, that resources are always redirected to GAE and Django dont care, if GAE application is working (GAE is down or over free quota). If you are near to quota limits, it is good idea to enable billing. In near future, I will add some intelligence to Django middleware, which will be able to decide, if resource should be redirected to GAE or not. CONCLUSIONLet me know, if you are using this GAE cache in your project! [Less]
Created 3 months ago.