{ "info": { "author": "ftao", "author_email": "ftao@ezengage.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP" ], "description": "django-ezengage\n=============================\n\nInstallation\n-------------------\n\n1. Download latest version from https://github.com/ezengage/django-ezengage/downloads/\n2. Unzip the archive\n3. run :: \n \n python setup.py install\n\nWe will laster upload the file into PYPI, so your can install with easy_install .\n\nConfiguration\n-------------------\nadd `eze_auth` to INSTALLED_APPS\n\n:: \n\n INSTALLED_APPS = (\n #.....\n 'eze_auth',\n #....\n }\n\n\nadd `eze_auth.auth_backends.EzEngageBackend` to AUTHENTICATION_BACKENDS\n\n::\n\n AUTHENTICATION_BACKENDS = ( \n 'django.contrib.auth.backends.ModelBackend',\n 'eze_auth.auth_backends.EzEngageBackend',\n )\n\n\nadd `eze_auth_urls` to url conf \n\n:: \n\n urlpatterns += patterns('',\n (r'^eze/', include('eze_auth.urls')),\n )\n\n\nSync database\n-----------------\n\n::\n\n ./manage.py syncdb eze_auth\n\nif you are using South, run \n\n::\n\n ./manage.py migrate eze_auth\n\n\nembed login widget in template\n--------------------------------\n\n::\n\n {% load eze_tags %}\n {% eze_login_widget '/after/login/done/' %}\n\n\nupdate status \n------------------------------\n\n::\n\n from eze_auth.helper import get_api_client\n from eze_auth.models import EzeUserProfile\n\n identity = EzeUserProfile.objects.get(user=request.user)\n message = 'update status to ... '\n eze_api_client = get_api_client()\n eze_api_client.update_status(identity.identity, message)", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/ezengage/django-ezengage/zipball/v0.1.1", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "UNKNOWN", "keywords": "ezengage,django", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "django-ezengage", "package_url": "https://pypi.org/project/django-ezengage/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-ezengage/", "project_urls": { "Download": "https://github.com/ezengage/django-ezengage/zipball/v0.1.1", "Homepage": "UNKNOWN" }, "release_url": "https://pypi.org/project/django-ezengage/0.1.1/", "requires_dist": null, "requires_python": null, "summary": "django app works with ezengage service", "version": "0.1.1" }, "last_serial": 345274, "releases": { "0.1.1": [] }, "urls": [] }