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": {"result": result}}

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.0b1   # Start a beta cycle
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.1.0b2.tar.gz (146.6 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.1.0b2-py3-none-any.whl (141.3 kB view details)

Uploaded Python 3

File details

Details for the file torivers_sdk-0.1.0b2.tar.gz.

File metadata

  • Download URL: torivers_sdk-0.1.0b2.tar.gz
  • Upload date:
  • Size: 146.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for torivers_sdk-0.1.0b2.tar.gz
Algorithm Hash digest
SHA256 97941bab434d0012eeb7cd32846fd469692936c68604e34d0b9539783948cfca
MD5 9b6db7de084e910274a8fe86f12060fc
BLAKE2b-256 ad71a7714577699c7cd1028b20db2bc05d6b7c4eef4f1e75d515cc143c816414

See more details on using hashes here.

Provenance

The following attestation bundles were made for torivers_sdk-0.1.0b2.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.1.0b2-py3-none-any.whl.

File metadata

  • Download URL: torivers_sdk-0.1.0b2-py3-none-any.whl
  • Upload date:
  • Size: 141.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for torivers_sdk-0.1.0b2-py3-none-any.whl
Algorithm Hash digest
SHA256 2925988e7bf4d9757f44f1ee37aff433d91b7cd86a7116d90916b396ae706da7
MD5 27a93e9afc92634122bd1cee2237f596
BLAKE2b-256 3c55b55d6338b9f6af42fdc82eb3d0f4f0f4445eed1fc6757145b4a0c6639d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for torivers_sdk-0.1.0b2-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