Installation¶
Requirements¶
Python 3.10 to 3.14 supported.
Django 5.1 to 6.1 supported.
Installation¶
Install with pip:
python -m pip install django-crawl
django-crawl’s HTML parser is built in Rust, using the same parser as the Servo browser engine. Binary wheels are provided for common platforms; installing on other platforms requires a Rust toolchain to build from source.
Add django-crawl to your
INSTALLED_APPS:INSTALLED_APPS = [ ..., "django_crawl", ..., ]