Build a sitemap.xml file from CSV rows describing URLs and optional SEO metadata.
CSV format
One URL per line with optional columns:
url,lastmod,changefreq,priority
- url (required) β absolute HTTPS address
- lastmod β ISO 8601 date of last modification
- changefreq β hint such as
daily,weekly,monthly - priority β decimal 0.0β1.0 relative weight
Extra columns are ignored. The generator wraps rows in the standard <urlset> namespace expected by search engines.
When to use it
Bootstrap sitemaps for static sites, convert spreadsheet URL inventories into uploadable XML, or teach the sitemap protocol without hand-editing tags.
Limitations
Does not crawl your site or verify that URLs return 200. Invalid URLs, duplicate entries, or more than 50,000 URLs per file (protocol limit) are your responsibility. changefreq and priority are hints only β crawlers may disregard them.
Example
For sitemap/from-csv-to-sitemap (Provide CSV rows and generate sitemap-compliant XML entries for website indexing.), a representative run produces a concrete output you can compare against known fixtures.