Skip to content

Latest commit

 

History

History

README.md

starter-crawl4ai (Python)

Minimal Crawl4AI starter — crawls a single URL and returns the page content as clean markdown.

For deep crawling, multi-URL crawling, content selection, and adaptive crawling, see the Crawl4AI documentation.

Run on Intuned

APIs

API Description
simple-crawl Crawls a single URL and returns the page content as clean markdown

Getting Started

Install dependencies

uv sync

If the intuned CLI is not installed, install it globally:

npm install -g @intuned/cli

After installing dependencies, intuned command should be available in your environment.

Run an API

intuned dev run api simple-crawl .parameters/api/simple-crawl/default.json

Save project

intuned dev provision

Deploy

intuned dev deploy

Project Structure

starter-crawl4ai/
├── api/
│   └── simple-crawl.py                # Crawl a single URL to markdown
├── intuned-resources/
│   └── jobs/
│       └── simple-crawl.job.jsonc     # Job definition for simple-crawl API
├── .parameters/
│   └── api/
│       └── simple-crawl/
├── Intuned.jsonc
├── pyproject.toml
└── README.md

Related