A pluggable implementation of webmention for Django projects.
Project description
django-webmention
webmention for Django projects.
Installation
$ pip install django-webmention
- Add
'webmention'
toINSTALLED_APPS
- Run
python manage.py migrate webmention
- Add the URL patterns to your top-level
urls.py
path('webmention/', include(webmention.urls))
for Django >= 2.0url(r'^webmention', include('webmention.urls', namespace='webmention'))
for Django < 2.0
Usage
- Include webmention information by either:
- Installing the middleware in
settings.py
(affects all views)- Use
webmention.middleware.webmention_middleware
inMIDDLEWARE
for Django >= 1.10 - Use
webmention.middleware.WebMentionMiddleware
inMIDDLEWARE_CLASSES
for older projects
- Use
- Decorating a specific view with
webmention.middleware.include_webmention_information
- Installing the middleware in
- View webmention responses in the Django admin interface and mark them as reviewed as needed
Development
Running Tests
You can run tests using the runtests.py
module:
$ python runtests.py
You can also run the tests inside a consuming Django project:
$ python manage.py test webmention
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file django_webmention-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: django_webmention-1.0.1-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 913b223f3e616c4034fc0ff0b70b07e1535059ea29b94e420e03e8340ef9bd4d |
|
MD5 | 1a4d7504690a9cc17cbee7e402907a89 |
|
BLAKE2b-256 | a823c335e65dec44821e19a08f0bd7103d488d06ecd36d76cc58393af35db3e0 |