jigsawstack


Namejigsawstack JSON
Version 0.2.9 PyPI version JSON
download
home_pagehttps://github.com/jigsawstack/jigsawstack-python
SummaryJigsawStack - The AI SDK for Python
upload_time2025-07-14 18:23:16
maintainerNone
docs_urlNone
authorJigsawStack
requires_python>=3.7
licenseNone
keywords ai ai tooling
VCS
bugtrack_url
requirements requests typing_extensions aiohttp
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # JigsawStack AI SDK

The JigsawStack AI SDK is a Python library that allows you to interact with powerful AI services to build AI-powered applications.

- 🧩 Powerful AI services all in one SDK
- ⌨️ Fully typed parameters and responses
- 📡 Built in Webhook support for long-running tasks
- 📦 Built in file system for easy file uploads
- 🍃 Lightweight and blazing fast

## Learn more

To learn more about all available JigsawStack AI services, view the [Documentation](https://jigsawstack.com/docs) or [Website](https://jigsawstack.com).

## All APIs

| Category          | APIs                                               |
| ----------------- | -------------------------------------------------- |
| **👉 General**    | Translation, Summarization, Sentiment Analysis     |
| **🌐 Web**        | AI Web Scraping, AI Web Search                     |
| **🎵 Audio**      | Text to Speech, Speech to Text                     |
| **👀 Vision**     | vOCR, Object Detection                             |
| **🧠 LLMs**       | Prompt Engine                                      |
| **🖼️ Generative** | AI Image (Flux, SD, SDXL-Fast & more), HTML to Any |
| **✅ Validation** | Email, NSFW images, profanity & more               |

Learn more of about each category in the [API reference](https://docs.jigsawstack.com/api-reference)

## Installation

To install JigsawStack Python SDK, simply execute the following command in a terminal:

```
pip install jigsawstack
```

## Setup

First, get your API key from the [JigsawStack Dashboard](https://jigsawstack.com/dashboard)

Then, initialize the SDK:

```py
from jigsawstack import JigsawStack

jigsaw = JigsawStack(api_key="your-api-key")
```

## Usage

AI Scraping Example:

```py
params = {
 "url": "https://www.amazon.com/Cadbury-Mini-Caramel-Eggs-Bulk/dp/B0CWM99G5W",
 "element_prompts": ["prices"]
}
result = jigsaw.web.ai_scrape(params)
```

Text To Speech Example:

```py
params = {"text": "Hello, how are you doing?"}
result = jigsaw.audio.text_to_speech(params)
```

Speech To Text Example:

```py
params = { "url": "https://rogilvkqloanxtvjfrkm.supabase.co/storage/v1/object/public/demo/Video%201737458382653833217.mp4?t=2024-03-22T09%3A50%3A49.894Z"}
result = jigsaw.audio.speech_to_text(params)
```

VOCR:

```py
params = {
    "url": "https://rogilvkqloanxtvjfrkm.supabase.co/storage/v1/object/public/demo/Collabo%201080x842.jpg?t=2024-03-22T09%3A22%3A48.442Z"
}
result = jigsaw.vision.vocr(params)
```

## Community

Join JigsawStack community on [Discord](https://discord.gg/dj8fMBpnqd) to connect with other developers, share ideas, and get help with the SDK.

## Related Projects

- [Docs](https://jigsawstack.com/docs)
- [Javascript SDK](https://github.com/JigsawStack/jigsawstack-js)

## Contributing

JigsawStack AI SDK is open-source and welcomes contributions. Please open an issue or submit a pull request with your changes. Make sure to be as descriptive as possible with your submissions, include examples if relevant.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jigsawstack/jigsawstack-python",
    "name": "jigsawstack",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "AI, AI Tooling",
    "author": "JigsawStack",
    "author_email": "hello@jigsawstack.com",
    "download_url": "https://files.pythonhosted.org/packages/5f/26/8b1a9758ba4adffa0a04ff56c1a7dfe5f1faab9e7e46831cb2e31b91685a/jigsawstack-0.2.9.tar.gz",
    "platform": null,
    "description": "# JigsawStack AI SDK\n\nThe JigsawStack AI SDK is a Python library that allows you to interact with powerful AI services to build AI-powered applications.\n\n- \ud83e\udde9 Powerful AI services all in one SDK\n- \u2328\ufe0f Fully typed parameters and responses\n- \ud83d\udce1 Built in Webhook support for long-running tasks\n- \ud83d\udce6 Built in file system for easy file uploads\n- \ud83c\udf43 Lightweight and blazing fast\n\n## Learn more\n\nTo learn more about all available JigsawStack AI services, view the [Documentation](https://jigsawstack.com/docs) or [Website](https://jigsawstack.com).\n\n## All APIs\n\n| Category          | APIs                                               |\n| ----------------- | -------------------------------------------------- |\n| **\ud83d\udc49 General**    | Translation, Summarization, Sentiment Analysis     |\n| **\ud83c\udf10 Web**        | AI Web Scraping, AI Web Search                     |\n| **\ud83c\udfb5 Audio**      | Text to Speech, Speech to Text                     |\n| **\ud83d\udc40 Vision**     | vOCR, Object Detection                             |\n| **\ud83e\udde0 LLMs**       | Prompt Engine                                      |\n| **\ud83d\uddbc\ufe0f Generative** | AI Image (Flux, SD, SDXL-Fast & more), HTML to Any |\n| **\u2705 Validation** | Email, NSFW images, profanity & more               |\n\nLearn more of about each category in the [API reference](https://docs.jigsawstack.com/api-reference)\n\n## Installation\n\nTo install JigsawStack Python SDK, simply execute the following command in a terminal:\n\n```\npip install jigsawstack\n```\n\n## Setup\n\nFirst, get your API key from the [JigsawStack Dashboard](https://jigsawstack.com/dashboard)\n\nThen, initialize the SDK:\n\n```py\nfrom jigsawstack import JigsawStack\n\njigsaw = JigsawStack(api_key=\"your-api-key\")\n```\n\n## Usage\n\nAI Scraping Example:\n\n```py\nparams = {\n \"url\": \"https://www.amazon.com/Cadbury-Mini-Caramel-Eggs-Bulk/dp/B0CWM99G5W\",\n \"element_prompts\": [\"prices\"]\n}\nresult = jigsaw.web.ai_scrape(params)\n```\n\nText To Speech Example:\n\n```py\nparams = {\"text\": \"Hello, how are you doing?\"}\nresult = jigsaw.audio.text_to_speech(params)\n```\n\nSpeech To Text Example:\n\n```py\nparams = { \"url\": \"https://rogilvkqloanxtvjfrkm.supabase.co/storage/v1/object/public/demo/Video%201737458382653833217.mp4?t=2024-03-22T09%3A50%3A49.894Z\"}\nresult = jigsaw.audio.speech_to_text(params)\n```\n\nVOCR:\n\n```py\nparams = {\n    \"url\": \"https://rogilvkqloanxtvjfrkm.supabase.co/storage/v1/object/public/demo/Collabo%201080x842.jpg?t=2024-03-22T09%3A22%3A48.442Z\"\n}\nresult = jigsaw.vision.vocr(params)\n```\n\n## Community\n\nJoin JigsawStack community on [Discord](https://discord.gg/dj8fMBpnqd) to connect with other developers, share ideas, and get help with the SDK.\n\n## Related Projects\n\n- [Docs](https://jigsawstack.com/docs)\n- [Javascript SDK](https://github.com/JigsawStack/jigsawstack-js)\n\n## Contributing\n\nJigsawStack AI SDK is open-source and welcomes contributions. Please open an issue or submit a pull request with your changes. Make sure to be as descriptive as possible with your submissions, include examples if relevant.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "JigsawStack - The AI SDK for Python",
    "version": "0.2.9",
    "project_urls": {
        "Homepage": "https://github.com/jigsawstack/jigsawstack-python"
    },
    "split_keywords": [
        "ai",
        " ai tooling"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7745fecd62731bca16024fe0f1ba41ad01e292f1feda3eaf24686e73b9ead48",
                "md5": "e640d6020e808427c897370b787f4afc",
                "sha256": "709f5a8598aa87faedf03468f9079f94c86ab4de0dcbfce76a77e5d7f767d097"
            },
            "downloads": -1,
            "filename": "jigsawstack-0.2.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e640d6020e808427c897370b787f4afc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 30900,
            "upload_time": "2025-07-14T18:23:14",
            "upload_time_iso_8601": "2025-07-14T18:23:14.997038Z",
            "url": "https://files.pythonhosted.org/packages/a7/74/5fecd62731bca16024fe0f1ba41ad01e292f1feda3eaf24686e73b9ead48/jigsawstack-0.2.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f268b1a9758ba4adffa0a04ff56c1a7dfe5f1faab9e7e46831cb2e31b91685a",
                "md5": "13c8a7b3a71c19b6fbe01a928886dd24",
                "sha256": "1ae914b4618540b0afb3664fe3f33b68d6d33468a2ac24e6d20fa03e5238d400"
            },
            "downloads": -1,
            "filename": "jigsawstack-0.2.9.tar.gz",
            "has_sig": false,
            "md5_digest": "13c8a7b3a71c19b6fbe01a928886dd24",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 25466,
            "upload_time": "2025-07-14T18:23:16",
            "upload_time_iso_8601": "2025-07-14T18:23:16.583521Z",
            "url": "https://files.pythonhosted.org/packages/5f/26/8b1a9758ba4adffa0a04ff56c1a7dfe5f1faab9e7e46831cb2e31b91685a/jigsawstack-0.2.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-14 18:23:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jigsawstack",
    "github_project": "jigsawstack-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.31.0"
                ]
            ]
        },
        {
            "name": "typing_extensions",
            "specs": []
        },
        {
            "name": "aiohttp",
            "specs": []
        }
    ],
    "lcname": "jigsawstack"
}
        
Elapsed time: 1.44137s