Skip to main content

SDK for building third-party automations for the ToRivers marketplace

Project description

ToRivers SDK

Build and publish automations for the ToRivers marketplace.

Installation

pip install torivers-sdk

Quick Start

Create a new automation:

from torivers_sdk import Automation, AutomationMetadata, BaseState
from langgraph.graph import StateGraph
from typing import Annotated, Any


class MyState(BaseState):
    """State for my automation."""
    result: Annotated[str, lambda l, r: r]


class MyAutomation(Automation[MyState]):
    """A simple automation example."""

    def metadata(self) -> AutomationMetadata:
        return AutomationMetadata(
            name="my-automation",
            title="My Automation",
            version="1.0.0",
            description="Does something useful",
            category="general",
        )

    def get_state_class(self) -> type[MyState]:
        return MyState

    def build_graph(self) -> StateGraph:
        graph = StateGraph(MyState)
        graph.add_node("process", self.process)
        graph.set_entry_point("process")
        graph.set_finish_point("process")
        return graph

    def process(self, state: MyState) -> dict[str, Any]:
        context = state["context"]
        context.log_progress("Processing", "Starting work...")

        # Your automation logic here
        result = f"Processed: {state['input_data']}"

        context.log_success("Done", "Work completed!")
        return {
            "output_data": {
                "_version": 1,
                "_blocks": [
                    {
                        "type": "text",
                        "label": "Result",
                        "content": result,
                        "format": "plain",
                    }
                ],
            }
        }

Testing Locally

Use the local sandbox to test your automation:

import asyncio
from torivers_sdk.testing import LocalSandbox, MockCredentialProxy

async def test_automation():
    sandbox = LocalSandbox()

    # Set up mock credentials if needed
    credentials = MockCredentialProxy(["gmail", "sheets"])
    sandbox.set_credentials(credentials)

    # Run the automation
    automation = MyAutomation()
    result = await sandbox.run(automation, {"query": "test"})

    assert result.success
    print(f"Output: {result.output_data}")

asyncio.run(test_automation())

CLI Commands

# Initialize a new automation project
torivers init my-automation

# Run locally
torivers run --input input.json

# Run tests
torivers test

# Validate before submission
torivers validate

# Submit for review
torivers submit

# Authenticate and track review
torivers login
torivers status

Documentation

For full documentation, visit docs.torivers.com/sdk

Versioning & Releases

This package uses bump-my-version for version management. Install dev dependencies first:

pip install -e ".[dev]"

Bump the version (creates a commit + sdk-v* tag automatically):

bump-my-version bump patch                   # 0.1.0 → 0.1.1
bump-my-version bump minor                   # 0.1.0 → 0.2.0
bump-my-version bump --new-version 0.2.0b2   # Example beta version
bump-my-version bump pre_n                   # Next beta (b1 → b2)
bump-my-version bump pre_l                   # Beta → RC → Stable

Then push to trigger the PyPI publish workflow:

git push && git push --tags

Pre-releases (b/rc tags) are published to PyPI but not installed by default — users must pip install --pre torivers-sdk.

Requirements

  • Python 3.11+
  • Dependencies: langgraph, pydantic, httpx, click, rich, docker, pyyaml

License

Proprietary - see LICENSE for details.

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

torivers_sdk-0.2.0b3.tar.gz (160.4 kB view details)

Uploaded Source

Built Distribution

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

torivers_sdk-0.2.0b3-py3-none-any.whl (153.2 kB view details)

Uploaded Python 3

File details

Details for the file torivers_sdk-0.2.0b3.tar.gz.

File metadata

  • Download URL: torivers_sdk-0.2.0b3.tar.gz
  • Upload date:
  • Size: 160.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for torivers_sdk-0.2.0b3.tar.gz
Algorithm Hash digest
SHA256 c03597407fa36dcc1f8862e060fed022fcb6338106b4a15850fadb95d4212c80
MD5 3d6e9aaf9b030bc51a7ff43041208274
BLAKE2b-256 0479432fa14ad87faefef41197b9b9a4aaccb5b6c1d5d8a014b66a3bd7d1ad6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for torivers_sdk-0.2.0b3.tar.gz:

Publisher: sdk-publish.yml on Lo-Agency/torivers-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file torivers_sdk-0.2.0b3-py3-none-any.whl.

File metadata

  • Download URL: torivers_sdk-0.2.0b3-py3-none-any.whl
  • Upload date:
  • Size: 153.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for torivers_sdk-0.2.0b3-py3-none-any.whl
Algorithm Hash digest
SHA256 918f579435b39df4fb371ecf0b7044dc3d00614f252cf4e4bccb9fc37dc2660b
MD5 06659f79c99642531f96c1cd881ca0f1
BLAKE2b-256 31fc5f39056337c30345362fd77c484e9e227c2420af58fbac0a38eb9de9f1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for torivers_sdk-0.2.0b3-py3-none-any.whl:

Publisher: sdk-publish.yml on Lo-Agency/torivers-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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