Skip to main content

Python wrapper for the Rawfy AI agent skill — converts any URL into structured, agent-readable content

Project description

Rawfy Python Wrapper

Python bindings for the Rawfy AI agent skill.

Prerequisites

  • Node.js >= 18 — Rawfy is a Node.js tool
  • Rawfy CLInpm install -g rawfy

Install

pip install .

Quick Start

from rawfy import fetch, metadata

# Full page fetch (returns WSM markdown)
content = fetch("https://example.com")

# Get structured JSON data
import json
data = fetch("https://example.com", format="json")
parsed = json.loads(data)

# Or use the convenience wrapper
from rawfy import fetch_json
data = fetch_json("https://example.com")
print(data["metadata"]["title"])

# Lightweight metadata only
meta = metadata("https://docs.python.org")
print(f"Title: {meta['title']}, Words: {meta['word_count']}")

API

fetch(url, *, format="markdown", vision=False, no_playwright=False, max_tokens=50000, timeout=30)

Fetch and process a URL. Returns the content as a string.

fetch_json(url, **kwargs)

Same as fetch() with format="json", returns a parsed dict.

metadata(url, *, no_playwright=False, timeout=15)

Fetch only page metadata (lightweight). Returns a dict.

check_installation()

Check if Rawfy and dependencies are installed. Returns a status dict.

Error Handling

from rawfy import fetch, RawfyError

try:
    content = fetch("https://example.com")
except RawfyError as e:
    print(f"Error [{e.code}]: {e}")
    print(f"URL: {e.url}")

CLI

python -m rawfy https://example.com
python -m rawfy https://example.com --format json

Project details


Download files

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

Source Distribution

rawfy-0.1.1.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

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

rawfy-0.1.1-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file rawfy-0.1.1.tar.gz.

File metadata

  • Download URL: rawfy-0.1.1.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for rawfy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 7a92af6a324d0081f6a1b583253094ace1aba157eedcf055adb2f3192a44bedc
MD5 0b8d858e16119b8231270d4f9baef27a
BLAKE2b-256 f26f684bcb65ab465d2b7b4a3d21fb6308c91a6dca28a37bd494ac5d43890b66

See more details on using hashes here.

File details

Details for the file rawfy-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: rawfy-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for rawfy-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2ebad537f52732001a3f55705d652298f8de53e417a5c474915e75f8e54e25cb
MD5 f25e6ccca5a329e469c5a5e4bf04a1b2
BLAKE2b-256 d56ad1a7682d6277844adfa783f966adc5b20d163492d2f38f06de57ebca037c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page