{ "info": { "author": "Klaus Laube", "author_email": "kplaube@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Plugins", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "django-seohelper\n================\n\n\n\n**Django SeoHelper** is a pluggable application that helps you to add\nmeta-information to your Django templates.\n\nSoon, more information about usage.\n\n\nInstallation\n------------\n\nUsing pip:\n\n pip install django-seohelper\n\nUsing the source code:\n\n git clone https://github.com/kplaube/django-seohelper.git\n cd django-seohelper/\n python setup.install\n\nConfiguring\n\n* Add `seohelper` to your `INSTALLED_APPS`\n* Run `syncdb` to create all necessary tables\n\nAdding the code to your Template\n--------------------------------\n\nYou need to put the code below in your template file:\n \n {% load seo_helper %}\n {% seo_helper request.path as meta %}\n\n \n
\n