just-prompt-it


Namejust-prompt-it JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryA Python SDK for fetching and rendering prompts from Prompt Studio API
upload_time2025-09-04 04:22:27
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8.1
licenseNone
keywords prompt template api sdk jinja2
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Prompt Studio SDK

A Python SDK for fetching and rendering prompts from Prompt Studio API.

## Installation

```bash
pip install just-prompt-it
```

## Usage

### Standalone rendering
```python
from prompt_studio import render

rendered = render("Hello, {{name}}!", {"name": "World"})
print(rendered)  # Output: Hello, World!
```

### With API integration
```python
from prompt_studio import PromptStudio, render

studio = PromptStudio(api_key="your-api-key")
prompt = studio.get_prompt("my-project", "my-prompt")
rendered = render(prompt, {"name": "World"})
```

## License

MIT License

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "just-prompt-it",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8.1",
    "maintainer_email": null,
    "keywords": "prompt, template, api, sdk, jinja2",
    "author": null,
    "author_email": "Trustsoft <contact@trustsoft.com.vn>",
    "download_url": "https://files.pythonhosted.org/packages/25/78/feec5fdbdff1e0ef344c358abebd23be59dbbc2cc9f7357df9597ccdee13/just_prompt_it-1.0.1.tar.gz",
    "platform": null,
    "description": "# Prompt Studio SDK\n\nA Python SDK for fetching and rendering prompts from Prompt Studio API.\n\n## Installation\n\n```bash\npip install just-prompt-it\n```\n\n## Usage\n\n### Standalone rendering\n```python\nfrom prompt_studio import render\n\nrendered = render(\"Hello, {{name}}!\", {\"name\": \"World\"})\nprint(rendered)  # Output: Hello, World!\n```\n\n### With API integration\n```python\nfrom prompt_studio import PromptStudio, render\n\nstudio = PromptStudio(api_key=\"your-api-key\")\nprompt = studio.get_prompt(\"my-project\", \"my-prompt\")\nrendered = render(prompt, {\"name\": \"World\"})\n```\n\n## License\n\nMIT License\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python SDK for fetching and rendering prompts from Prompt Studio API",
    "version": "1.0.1",
    "project_urls": {
        "Documentation": "https://github.com/trustsoftvn/prompt_studio_sdk#readme",
        "Homepage": "https://github.com/trustsoftvn/prompt_studio_sdk",
        "Issues": "https://github.com/trustsoftvn/prompt_studio_sdk/issues",
        "Repository": "https://github.com/trustsoftvn/prompt_studio_sdk.git"
    },
    "split_keywords": [
        "prompt",
        " template",
        " api",
        " sdk",
        " jinja2"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c3ed17e5a22e219c41d7017a94a3bcb69346533cb2f8b5b61f60a1a15fcc053",
                "md5": "51f6e56c21db28a52198ef5a7c89d767",
                "sha256": "447337e6c23da0153175d467bcc5a04a792ea48ffd689c13ebcfda1b05d7f504"
            },
            "downloads": -1,
            "filename": "just_prompt_it-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "51f6e56c21db28a52198ef5a7c89d767",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 5847,
            "upload_time": "2025-09-04T04:22:26",
            "upload_time_iso_8601": "2025-09-04T04:22:26.500950Z",
            "url": "https://files.pythonhosted.org/packages/5c/3e/d17e5a22e219c41d7017a94a3bcb69346533cb2f8b5b61f60a1a15fcc053/just_prompt_it-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2578feec5fdbdff1e0ef344c358abebd23be59dbbc2cc9f7357df9597ccdee13",
                "md5": "aa61c1f4e7a27c9b891299c08d0d9179",
                "sha256": "31cc86d5766fabd934cd72079934d9aed86abd60b0c29e803fdb31b6e823a26b"
            },
            "downloads": -1,
            "filename": "just_prompt_it-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "aa61c1f4e7a27c9b891299c08d0d9179",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.1",
            "size": 8465,
            "upload_time": "2025-09-04T04:22:27",
            "upload_time_iso_8601": "2025-09-04T04:22:27.478321Z",
            "url": "https://files.pythonhosted.org/packages/25/78/feec5fdbdff1e0ef344c358abebd23be59dbbc2cc9f7357df9597ccdee13/just_prompt_it-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-04 04:22:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "trustsoftvn",
    "github_project": "prompt_studio_sdk#readme",
    "github_not_found": true,
    "lcname": "just-prompt-it"
}
        
Elapsed time: 2.06482s