https://github.com/realorangeone/wagtail-indexnow
A Wagtail package to automatically submit published pages for search engine indexing.
https://github.com/realorangeone/wagtail-indexnow
Last synced: about 1 year ago
JSON representation
A Wagtail package to automatically submit published pages for search engine indexing.
- Host: GitHub
- URL: https://github.com/realorangeone/wagtail-indexnow
- Owner: RealOrangeOne
- License: bsd-3-clause
- Created: 2023-12-08T11:54:22.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-18T17:38:24.000Z (over 2 years ago)
- Last Synced: 2025-03-12T05:48:00.471Z (about 1 year ago)
- Language: Python
- Homepage: https://pypi.org/project/wagtail-indexnow/
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wagtail Indexnow




A Wagtail package to automatically submit published pages for search engine indexing.
This package implements the [IndexNow](https://www.indexnow.org/) standard (which is also used by [Cloudflare's Crawler Hints](https://blog.cloudflare.com/cloudflare-now-supports-indexnow/)).
Whenever a page is published, a [ping](https://www.indexnow.org/documentation) is sent to supporting search engines to inform them of a content change. To reduce spamming, pages which have been published within the last 10 minutes are ignored.
## Installation
```
pip install wagtail-indexnow
```
Then, add `wagtail_indexnow` to `INSTALLED_APPS`.
Finally, register the required URLs (Note that these must be loaded without a prefix):
```python
urlpatterns += [path("", include("wagtail_indexnow.urls"))]
```