# Build RAG Dataset from Python Documentation Sitemap

**Use case:** 

Extract up to 8000 URLs from the Python Docs sitemap. Get a comprehensive dataset for LLM training datasets and SEO audits.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://docs.python.org/3/sitemap.xml"
    }
  ],
  "maxUrls": 8000,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "lastmod": {
    "label": "Last Modified",
    "format": "string"
  },
  "changefreq": {
    "label": "Change Frequency",
    "format": "string"
  },
  "priority": {
    "label": "Priority",
    "format": "number"
  },
  "sourceSitemap": {
    "label": "Source Sitemap",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Sitemap to URL Crawler — Extract Sitemap.xml URLs](https://apify.com/logiover/sitemap-to-url-crawler) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/sitemap-to-url-crawler) to learn more, explore other use cases, and run it yourself.