A framework for managing SEO metadata in Django.
Project description
Overview
This is a set of powerful and flexible SEO tools for Django. It allows you to associate metadata with:
absolute paths
model instances
model classes
views
Metadata can be edited in the Django Admin in a centralised place, but also alongside any associated models.
This is however a framework, not an app. To use this library, you need to define the metadata you want and add the output to your templates. Everything else (retrieval, formatting, escaping, caching) is handled for you. Therefore, you have complete control over the data you store.
As requirements change, it may become necessary to add new metadata fields. Having the metadata definition confined to a single, short class means that it is easy to update.
Requirements
Python (2.7, 3.3, 3.4, 3.5)
Django (1.7, 1.8, 1.9)
Example
Here is an example of a definition:
from djangoseo import seo
class BasicMetadata(seo.Metadata):
title = seo.Tag(max_length=68, head=True)
keywords = seo.KeywordTag()
description = seo.MetaTag(max_length=155)
heading = seo.Tag(name="h1")
subheading = seo.Tag(name="h2")
extra = seo.Raw(head=True)
# Adding some fields for facebook (opengraph)
og_title = seo.MetaTag(name="og:title",
populate_from="title",
verbose_name="facebook title")
og_description = seo.MetaTag(name="og:description",
populate_from="description",
verbose_name='facebook description')
As you can see it is very flexible, but there is much more than this simple example.
The full documentation can be read online at http://django-seo2.readthedocs.org/.
History
This is a fork of django-seo, which is no longer maintained.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-seo2-1.0.1.tar.gz
.
File metadata
- Download URL: django-seo2-1.0.1.tar.gz
- Upload date:
- Size: 597.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f054ef18152de1a2a3775f9e68d1303315af8b9c37a4a35d6b23800da3f5bf09 |
|
MD5 | 6448330fc8b4e8ba045764e43d7426c3 |
|
BLAKE2b-256 | f8642476913e639071428e34b5925790d7f92e92761bb8ccbced8b6fd0cf6259 |
File details
Details for the file django_seo2-1.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_seo2-1.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 25.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63dba85a4464ab9212632bb31dc6acc7feef2a0caafdb7267fa055c81c3daca5 |
|
MD5 | 464128ef0f31b211b4dc3142bbd91575 |
|
BLAKE2b-256 | a6b4c9c0bc2749b31e858218d63076353bb959f71a8dbcc229399882be7ddb87 |