skillfed

jigsawstack

JigsawStack - The AI SDK for Python

jigsawstack v0.4.6 177.3K downloads/30d#10,215 on PyPI20
Permissive license Active released

What it is and what it does

JigsawStack is a Python client library for a hosted AI service platform. It wraps remote APIs across six categories—general NLP (translation, summarization, sentiment), web (scraping, search), audio (speech-to-text), vision (OCR, object detection), generative (image synthesis, HTML rendering), and validation (email, NSFW, profanity)—into a single typed SDK with built-in webhook support for long-running tasks and a file system abstraction for uploads.

You initialize it with an API key, then call methods like `jigsaw.web.ai_scrape()`, `jigsaw.audio.speech_to_text()`, or `jigsaw.vision.vocr()` to invoke remote AI operations. The package depends on requests, typing_extensions, and aiohttp, and is designed to be lightweight. It's actively maintained, supports Python 3.9–3.12, and has no known vulnerabilities.

Use it for:

  • Extract structured data from web pages using natural language prompts instead of CSS selectors or XPath.
  • Transcribe audio or video files to text without running a local speech-recognition model.
  • Perform optical character recognition (OCR) on images or detect objects within them.
  • Generate images using Flux, Stable Diffusion, or SDXL models without hosting your own inference.
  • Validate user inputs (email format, profanity, NSFW content) in real time during form submission.
  • Summarize or translate text content as part of a larger application workflow.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A Python SDK for accessing JigsawStack's hosted AI services—translation, summarization, web scraping, speech-to-text, image recognition, and content generation—through a typed API with webhook and file-upload support.

Yes. The package is actively maintained, has no security vulnerabilities, uses permissive MIT licensing, and offers low-friction installation. It's a good fit if you need to call hosted AI services without building your own integrations—but only if you're willing to depend on an external API provider and can obtain a JigsawStack API key.

Install

jigsawstack on PyPI

pip

pip install jigsawstack

uv

uv add jigsawstack

poetry

poetry add jigsawstack

Installing jigsawstack

Before you install

Low friction installation with three lightweight runtime dependencies (requests, typing_extensions, aiohttp). The package is actively maintained with a recent release and no known vulnerabilities.

License in practice

Licensed under MIT (permissive), so you can use, modify, and distribute this package freely in commercial and open-source projects without restriction.

Quickstart

pip install jigsawstack

from jigsawstack import JigsawStack

jigsaw = JigsawStack(api_key="your-api-key")
result = jigsaw.web.ai_scrape({"url": "https://example.com", "element_prompts": ["prices"]})

Requires a valid JigsawStack API key from the JigsawStack Dashboard; all services are remote and require network access.

Verify before relying

  • Rate limits, quota policies, and pricing for each API category are not detailed in the fact sheet.
  • Async/await support beyond aiohttp dependency is not confirmed in the description.
  • Error handling and retry behavior for failed requests is not documented in the excerpt.

Package facts

License not declared (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 3 — requests, typing_extensions, aiohttp
Maintenance actively maintained — 39 days since the last release
Last repo commit
First released
Downloads 177,269/month — #10,215 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: jigsawstack-0.4.6-py3-none-any.whl

Keywords: AI, AI Tooling

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseNatural Language :: EnglishOperating System :: OS IndependentProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.9

Tags

AI service SDKweb scraping with AIspeech to text APIimage OCR and object detectionAI image generationsentiment analysis APIcontent summarization
ai-servicesweb-scrapingapi-client

More Artificial Intelligence packages