django-ezengage

Django app works with ezengage service
Download

django-ezengage Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Other/Proprietary Li...
  • Publisher Name:
  • ftao
  • Publisher web site:
  • http://ezengage.com

django-ezengage Tags


django-ezengage Description

Django app works with ezengage service django-ezengage is a Django app that works with the ezengage service.Installation1. Download latest version from https://github.com/ezengage/django-ezengage/downloads/2. Unzip the archive3. run python setup.py installWe will laster upload the file into PYPI, so your can install with easy_install .Configurationadd `eze_auth` to INSTALLED_APPS INSTALLED_APPS = ( #..... 'eze_auth', #.... }add `eze_auth.auth_backends.EzEngageBackend` to AUTHENTICATION_BACKENDS AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', 'eze_auth.auth_backends.EzEngageBackend', )add `eze_auth_urls` to url conf urlpatterns += patterns('', (r'^eze/', include('eze_auth.urls')), )Sync database ./manage.py syncdb eze_authif you are using South, run ./manage.py migrate eze_authEmbed login widget in template {% load eze_tags %} {% eze_login_widget '/after/login/done/' %}Update status from eze_auth.helper import get_api_client from eze_auth.models import EzeUserProfile identity = EzeUserProfile.objects.get(user=request.user) message = 'update status to ... ' eze_api_client = get_api_client() eze_api_client.update_status(identity.identity, message) Requirements: · Python · Django


django-ezengage Related Software