Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmptrluke/django-structured-data
A template tag to assist in adding structured data to views and models.
https://github.com/dmptrluke/django-structured-data
django json-ld opengraph python
Last synced: 19 days ago
JSON representation
A template tag to assist in adding structured data to views and models.
- Host: GitHub
- URL: https://github.com/dmptrluke/django-structured-data
- Owner: dmptrluke
- License: mit
- Created: 2020-01-04T03:38:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-31T01:51:34.000Z (over 1 year ago)
- Last Synced: 2024-12-17T17:13:25.578Z (23 days ago)
- Topics: django, json-ld, opengraph, python
- Language: Python
- Size: 22.5 KB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Structured Data [![PyPI](https://img.shields.io/pypi/v/django-structured-data)](https://pypi.org/project/django-structured-data/)
Template tags to assist in adding structured metadata to views and models.## Install
1. Add "structured_data" to your `INSTALLED_APPS`:
```python
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.
```python
@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.urlreturn data
```
### In templates
Use the `json_ld_for` template tag to render your structured data as JSON-LD.
```djangotemplate
{% 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.
```djangotemplate
{% 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.
```djangotemplate
{% load meta %}
{% meta_for post %}
```## License
This software is released under the MIT license.
```
Copyright (c) 2019-2024 Luke RogersPermission 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.
```