Skip to main content
                |                                     |             
 __ `__ \    _` |        __|   __|   _` | \ \  \   /  |   _ \   __| 
 |   |   |  (   |       (     |     (   |  \ \  \ /   |   __/  |    
_|  _|  _| \__._|      \___| _|    \__._|   \_/\_/   _| \___| _|    

---------------------------------------------
simple_markdown_crawler - by @yukiteru_amano
---------------------------------------------
A multithreaded 🕸️ web crawler that recursively crawls a website and creates a 🔽 markdown file for each page.
This project is a fork from markdown_crawler from Paul Pierre (abandoned for 2 years).
https://github.com/yukiteruamano
https://x.com/yukiteru_amano



📝 Overview

This is a multithreaded web crawler that crawls a website and creates markdown files for each page. It was primarily created for large language model document parsing to simplify chunking and processing of large documents for RAG use cases. Markdown by nature is human readable and maintains document structure while keeping a small footprint.

✨ Features include

  • 🧵 Threading support for faster crawling
  • ⏯️ Continue scraping where you left off
  • ⏬ Set the max depth of children you wish to crawl
  • 📄 Support for tables, images, etc.
  • ✅ Validates URLs, HTML, filepaths
  • ⚙️ Configure list of valid base paths, base domains and exclude paths
  • 🍲 Uses BeautifulSoup to parse HTML
  • 🪵 Verbose logging option
  • 👩‍💻 Ready-to-go CLI interface

🏗️ Use cases

  • RAG (Retrieval Augmented Generation) - my primary usecase, use this to normalize large documents and chunk by header, pargraph or sentence
  • LLM fine-tuning - Create a large corpus of markdown files as a first step and leverage gpt-4o or mistral-small to extract Q&A pairs
  • Agent knowledge - Leverage this with autogen for expert agents, for example if you wish to reconstruct the knowledge corpus of a videogame or movie, use this to generate the given expert corpus
  • Agent / LLM tools - Use this for online RAG learning so your chatbot continues to learn. Use SERP and scrape + index top N results w/ markdown-crawler
  • Knowledge database for OpenWebUI and others toosl for LLM Chats.
  • And many more ..



🚀 Get started

🧪 Development setup

This project uses uv for dependency management and ruff for linting and formatting. Make sure you have uv installed.

Install dependencies (including dev tools):

uv sync --dev

Run the crawler from the repo:

uv run simple-markdown-crawler -t 5 -d 3 -b ./markdown https://en.wikipedia.org/wiki/Morty_Smith

🔧 Makefile

Alternatively, a Makefile centralizes the common workflows with make:

make install   # uv sync --dev
make check     # ruff check
make format    # ruff format
make lint      # ruff check + format
make lint-fix  # auto-fix lint + format
make test      # pytest
make build     # uv build (sdist + wheel, previa ejecución de tests)
make publish   # uv publish a PyPI (requiere UV_PUBLISH_TOKEN)
make sync      # uv lock --upgrade + uv sync --dev
make clean     # elimina dist/ y artefactos de build
make help      # muestra los targets disponibles

🎁 Install as a package

If you wish to simply use it in the CLI, you can install and run the package:

Install the package

pip install simple-markdown-crawler

Execute the CLI

simple-markdown-crawler -t 5 -d 3 -b ./markdown https://en.wikipedia.org/wiki/Morty_Smith

Or use the library in your own code:

from simple_markdown_crawler import md_crawl
url = 'https://en.wikipedia.org/wiki/Morty_Smith'
md_crawl(url, max_depth=3, num_threads=5, base_path='markdown')



⚠️ Requirements

  • Python 3.10+
  • uv for development
  • BeautifulSoup4
  • requests
  • markdownify



🔍 Usage

The following arguments are supported

usage: simple-markdown-crawler [-h] [--max-depth MAX_DEPTH]
                               [--num-threads NUM_THREADS]
                               [--base-dir BASE_DIR] [--debug]
                               [--target-content TARGET_CONTENT]
                               [--target-links TARGET_LINKS]
                               [--valid-paths VALID_PATHS]
                               [--exclude-paths EXCLUDE_PATHS]
                               [--domain-match | --no-domain-match | -m]
                               [--base-path-match | --no-base-path-match | -p]
                               [--links]
                               base_url



📝 Example

Take a look at example.py for an example implementation of the library. In this configuration we set:

  • max_depth to 3. We will crawl the base URL and 3 levels of children
  • num_threads to 5. We will use 5 parallel(ish) threads to crawl the website
  • base_dir to markdown. We will save the markdown files in the markdown directory
  • valid_paths an array of valid relative URL paths. We will only crawl pages that are in this list and base path
  • exclude_paths an array of exclude relative URL paths.
  • target_content to div#content. We will only crawl pages that have this HTML element using CSS target selectors. You can provide multiple and it will concatenate the results
  • is_domain_match to False. We will only crawl pages that are in the same domain as the base URL
  • is_base_path_match to False. We will include all URLs in the same domain, even if they don't begin with the base url
  • is_debug to True. We will print out verbose logging

And when we run it we can view the progress

cli

We can see the progress of our files in the markdown directory locally

md

And we can see the contents of the HTML converted to markdown

md



❤️ Thanks

If you have any issues, please feel free to open an issue or submit a PR. You can reach me via DM on Twitter/X.



⚖️ License

MIT License Copyright (c) 2023 Paul Pierre Copyright (c) 2025 Jose Maldonado Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.



markdownify credits

simple_markdown_crawler makes use of markdownify by Matthew Tretter. The original source code can be found here. It is licensed under the MIT license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_markdown_crawler-0.3.0.tar.gz (15.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_markdown_crawler-0.3.0-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

Details for the file simple_markdown_crawler-0.3.0.tar.gz.

File metadata

  • Download URL: simple_markdown_crawler-0.3.0.tar.gz
  • Upload date:
  • Size: 15.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.13

File hashes

Hashes for simple_markdown_crawler-0.3.0.tar.gz
Algorithm Hash digest
SHA256 7904d443112198bfefa1fde63445236a451ef559050d7acc1bda447b7d763b79
MD5 0f4ce966b87bf5b9c1a190623747d4de
BLAKE2b-256 3092b262166f47c6d2917c472eaa61e7c4423dc44de3aeeeda856683d9d88a21

See more details on using hashes here.

File details

Details for the file simple_markdown_crawler-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for simple_markdown_crawler-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 343a3dc19a7355c6456d1e8a0ab8c4d7cd06997542113fbbe6ff4441cef520a7
MD5 4a21a9657e3996b823e6fb7f5f98fd4c
BLAKE2b-256 ac379d27c76870d1272c5e0cac119306061de44c670f286ceaf9b388dbaabf4f

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.0 This release

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page