Template tags to assist in adding structured metadata to views and models.
Project description
Django Structured Data
Template tags to assist in adding structured metadata to views and models.
Install
- Add "structured_data" to your
INSTALLED_APPS
:
INSTALLED_APPS = [
...
'structured_data',
]
Use
In models
Define a structured_data
property on your models. This is written in a standard JSON-LD format. Included
below is a complicated example.
@property
def structured_data(self):
url = SITE_URL + self.get_absolute_url()
data = {
'@type': 'BlogPosting',
'headline': self.title,
'author': {
'@type': 'Person',
'name': self.author
},
'datePublished': self.created.strftime('%Y-%m-%d'),
'dateModified': self.modified.strftime('%Y-%m-%d'),
'url': url,
'mainEntityOfPage': {
'@type': 'WebPage',
'@id': url
},
}
if self.image:
data['image'] = SITE_URL + self.image.url
return data
In templates
Use the json_ld_for
template tag to render your structured data as JSON-LD.
{% load jsonld %}
{% json_ld_for post %}
A second template tag, og_for
, is also included. This attempts to translate your JSON-LD
data to Open Graph tags that can be read by Facebook, Twitter, Telegram
and more.
{% load opengraph %}
{% og_for post %}
A third template tag, meta_for
, will render the description field from
your JSON-LD data as a standard HTML meta description tag.
{% load meta %}
{% meta_for post %}
License
This software is released under the MIT license.
Copyright (c) 2019-2024 Luke Rogers
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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
Built Distribution
File details
Details for the file django_structured_data-0.6.0.tar.gz
.
File metadata
- Download URL: django_structured_data-0.6.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c63d2dc7bc841456d27ebf61b19e21c40402ca452ef3a21e8efebe1f0e43c5e |
|
MD5 | b48dd39603f97b72b3a761471849442b |
|
BLAKE2b-256 | e5be5c3649a3916e438eb3ee519816dca00462f903fba4cc9a4a7f28f938a4b7 |
File details
Details for the file django_structured_data-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: django_structured_data-0.6.0-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd7210d58a85a1622dbc5835d05def74d5249dcb0164ae8795aa060f63aa8370 |
|
MD5 | 857441c6f0a471a93792ff8f428b3e75 |
|
BLAKE2b-256 | cd75701afd63aefc39598282b8d77187b72627751d56341fabf74c86ac5069f5 |