Skip to main content

Painless SEO app for Django framework

Project description

# Django PainlessSEO

A painless way to add SEO information to your Django site.

## Features

This app provides two ways of adding SEO metadata to your django site:

- Absolute paths
- Model instances

It's fully integrated with the admin site including inline forms for models.
It also includes support for multiple languages and localized URLs.

## Requirements

Django >= 1.5.0

## Installation

The Git repository can be cloned with this command:

git clone https://github.com/Glamping-Hub/django-painless-seo.git

The `painlessseo` package included in the distribution should be placed on the
`PYTHONPATH`. Add `painlessseo` to the `INSTALLED_APPS` in your *settings.py*.
Run `syncdb` command to create the needed tables.

## Settings

PainlessSEO uses two configuration variables in order to define the default
information that will be displayed if the URL has no SEO metadata related. You
have to add them to your *settings.py*:

SEO_DEFAULT_TITLE = 'Lorem ipsum title'
SEO_DEFAULT_DESCRIPTION = 'Lorem ipsum description'

### Registering Models

To create synced SEO metadata for model instances you have to define the
`SEO_MODELS` variable in your *settings.py* like this:

SEO_MODELS = (
('myapp', 'mymodel'),
('anotherapp', 'anothermodel'),
)

After registering the models, you can add the inline form to the admin instance
for each model:

from painlessseo.admin import SeoMetadataInline

class MyModelAdmin(admin.ModelAdmin):
inlines = [SeoMetadataInline, ]

Now every time you save a model instance through the admin site, the SEO
metadata will be updated automatically.

## SEO Output

As simple as loading the `seo` template library and using the `get_seo`
template tag like this:

{% load seo %}

<head>
{% get_seo %}
</head>

## Notes

[Why PainlessSEO does not include keywords meta tag](http://googlewebmastercentral.blogspot.in/2009/09/google-does-not-use-keywords-meta-tag.html).

## Legal Stuff

This software is licensed under the terms of the BSD 3-clause license. You can
find the whole text of the license in the LICENSE file.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-painless-seo-0.0.9.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

django_painless_seo-0.0.9-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file django-painless-seo-0.0.9.tar.gz.

File metadata

File hashes

Hashes for django-painless-seo-0.0.9.tar.gz
Algorithm Hash digest
SHA256 6d26a722966a88a89fce674015b4e0158fcd45273c5af017266ecaf824f6f72d
MD5 b1823e3a2e1ef8055f95964b7b745218
BLAKE2b-256 d5a44339a80e7f6ae2b2d0d1f0e4ef9d840308b8c42c8d78e7938a851065cbcf

See more details on using hashes here.

File details

Details for the file django_painless_seo-0.0.9-py3-none-any.whl.

File metadata

File hashes

Hashes for django_painless_seo-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 80e60980f5edf78f8bb122b54f89f049b4c8bfde7152c9518c06b6cda4daaa08
MD5 d42dfa2b4484d3a255481057f65f1fc6
BLAKE2b-256 b6afdf756981013100a2143e48bc1357a63ba5b191a36f3d5809470a55d51cbb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page