Skip to main content

django-social-metadata is a Django application that provides mixin and template to display social metadata for Facebook and Google+.

Project description

django-social-metadata is a Django application that provides mixin and template to display social metadata for Facebook and Google+.

Installation

Package

javascript-settings can be installed as a normal Python package.

Example instalation for pip:

$ pip install django-social-metadata

Configuration

settings.py

Add javascript-settings to INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'social_metadata',
    ...
)

template

Include template in HEAD section of your main template:

{% include "social_metadata/default_tags.html" %}

Usage Example

views.py

from urlparse import urljoin

from django.conf.settings import MEDIA_URL
from django.views.generic import DetailView

import social_metadata.views

class PhotoSocialDataMixin(social_metadata.views.SocialDataMixin):
    def get_social_title(self):
        return self.title

    def get_social_images(self):
        return [urljoin(MEDIA_URL, self.image.path)]

    def get_social_description(self):
        return self.description

class PhotoDetail(PhotoSocialDataMixin, DetailView):
     model = Photo

Check https://github.com/pozytywnie/django-social-metadata/blob/master/social_metadata/views.py for other social metadata fields.

If you want to use Twitter cards you have to provide all required fields for given type ( https://dev.twitter.com/cards/overview ), as well as submit a link in the validator at https://cards-dev.twitter.com/validator and witelist every type you want to use for given domain.

Project details


Release history Release notifications | RSS feed

This version

1.3

Download files

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

Source Distribution

django-social-metadata-1.3.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file django-social-metadata-1.3.tar.gz.

File metadata

File hashes

Hashes for django-social-metadata-1.3.tar.gz
Algorithm Hash digest
SHA256 ba4addfd54c87589c2f7577f618374a9c2594f753805f8a68292f640f68ebf57
MD5 eb3f514b9ee7dd379e4a23800bce1e30
BLAKE2b-256 e10b7987ca097a14112c4b09000463029a37be195f7cd179a7792e1b873c2837

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