Flask extension for generating XML sitemaps
Project description
Flask Sitemapper
Flask Sitemapper is a Python 3 package that generates XML sitemaps for Flask applications. This allows you to create fully functional sitemaps and sitemap indexes for your Flask projects with minimal code.
You can install the latest version of Flask Sitemapper with pip:
pip install flask-sitemapper
For documentation (including for contributors), see the wiki.
Features
- Easily generate and serve XML sitemaps and sitemap indexes for your Flask apps
- Include URLs in your sitemaps by adding a decorator to their route/view functions
- Serve your sitemap on any URL you choose
- Include lastmod, changefreq, and priority information in your sitemaps
- Specify whether to use HTTP or HTTPS for the URLs in your sitemaps
- Compress your sitemaps using GZIP
- Create multiple sitemaps and sitemap indexes for the same app
- Supports apps using Flask blueprints
- Supports apps serving multiple domains
- Supports dynamic routes
- Works with many different app structures
Sitemaps
Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site. — sitemaps.org
For more information about sitemaps and the sitemap protocol, visit sitemaps.org
Basic Code Example
import flask
from flask_sitemapper import Sitemapper
sitemapper = Sitemapper()
app = flask.Flask(__name__)
sitemapper.init_app(app)
@sitemapper.include(lastmod="2022-02-08")
@app.route("/")
def home():
return flask.render_template("home.html")
@sitemapper.include(lastmod="2022-03-19")
@app.route("/about")
def about():
return flask.render_template("about.html")
@app.route("/sitemap.xml")
def sitemap():
return sitemapper.generate()
app.run()
With the above code running on localhost, http://localhost/sitemap.xml
will serve the following XML sitemap:
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://localhost/</loc>
<lastmod>2022-02-08</lastmod>
</url>
<url>
<loc>https://localhost/about</loc>
<lastmod>2022-03-19</lastmod>
</url>
</urlset>
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 Distribution
Built Distribution
File details
Details for the file flask_sitemapper-1.8.1.tar.gz
.
File metadata
- Download URL: flask_sitemapper-1.8.1.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 835276b83f5301d59a0c55d615218e6a2db1c686c25ca8f3ac0fd60f41dacf1e |
|
MD5 | dd6a3186072d1468cbf361b3df385b75 |
|
BLAKE2b-256 | 9dbf5c36b5f560c7c302669ed1402483714e9ac5b6aaeb7d9e4c1ef36c2daa2a |
File details
Details for the file flask_sitemapper-1.8.1-py3-none-any.whl
.
File metadata
- Download URL: flask_sitemapper-1.8.1-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2210565cdf66817f5dc316583fce1ea1d1377bbb2e986f5ac101f89ce5b9a710 |
|
MD5 | 48bbd81eca8c8bcccc8721e659150b62 |
|
BLAKE2b-256 | 76c536dc6ea8010ca98952e3c758cc57aa1793242822667472f3a53a7db3e87c |