Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

rototo Python SDK

Every substantial software system eventually needs a configuration subsystem. The software provides the underlying capabilities; configuration steers those capabilities to behave in a particular way.

Some configuration is settings-style: things like database URLs and encryption keys, usually held in environment variables and fixed once the software is deployed. That's not the kind we're concerned with here. What interests us instead is the configuration that governs the system's runtime behavior: feature availability, model selection, tenant overrides, offers, retry policies, logging controls, rollout plans, and so on.

Rototo provides a control plane for this kind of runtime configuration. It rests on a simple premise: runtime configuration should be treated like code. It should live alongside the code and follow a similar release cycle, and it should be testable and contract-enforced in the same way.

To that end, Rototo models configuration as files that are versioned, reviewed, tested, and released as packages. The Rototo SDK loads these packages within the application runtime to guide the application's behavior. Configuration thus follows the same release process as code, while gaining a hot-swappable deployment mechanism.

Rototo's hello world

Let's take a simple use case: we want to vary the order amount beyond which customers get free shipping. Customers in standard tier must have at least $50 as cart total while customers in premium tier get free shipping after $25. To accomplish this, we would do two things:

  • Create a Rototo configuration package.
  • Load the configuration package and resolve free shipping threshold in our application.

Create and publish a configuration package

First, install the Rototo cli from crates.io:

cargo install rototo --version 0.1.0-alpha.7

Now, create a configuration package for the application:

# Create app-config package with a variable named free_shipping_threshold
rototo init app-config --variable free_shipping_threshold

You should see the following in app-config/ dir:

$> tree app-config
app-config
├── rototo-package.toml
├── variables
│   └── free_shipping_threshold.toml
├── model
│   ├── catalogs
│   └── context
├── data
│   └── catalogs
└── lint

7 directories, 2 files

We explain the package model in Rototo Concepts. For now, we would focus on the variable free_shipping_threshold. Replace the contents of free_shipping_threshold.toml with the following:

schema_version = 1
description = "$ threshold for free shipping."
type = "int"

[resolve]
default = 50  # by default, free shipping beyond $50.

[[resolve.rule]]
when = '(context.account.tier == "premium")'
value = 25    # for premium account tier, free shipping beyond $25.

We can now validate our configuration to ensure that we got it right:

rototo lint app-config

We can further ensure that free_shipping_threshold resolves as expected.

# default value: should give 50
rototo resolve app-config --variable free_shipping_threshold
# standard account tier: should give 50
rototo resolve app-config --variable free_shipping_threshold --context account.tier=standard
# premium account tier: should give 25
rototo resolve app-config --variable free_shipping_threshold --context account.tier=premium

Load the configuration package and resolve the threshold

Now let's read that value from an application. Install the rototo Python SDK:

python -m pip install rototo

Save this as hello-rototo.py. It loads a refreshing package (one that re-reads the source in the background) and prints the free-shipping threshold for a standard and a premium account every couple of seconds:

import asyncio

import rototo

VARIABLE_ID = "free_shipping_threshold"


def print_threshold(app_config, tier):
    resolution = app_config.resolve_variable(
        VARIABLE_ID,
        {"account": {"tier": tier}},
    )
    print(f"{tier}: {resolution.value} USD")


async def main():
    app_config = await rototo.RefreshingPackage.load("app-config", period_seconds=1.0)
    try:
        while True:
            print("---")
            print_threshold(app_config, "standard")
            print_threshold(app_config, "premium")
            await asyncio.sleep(2.0)
    finally:
        await app_config.shutdown()


asyncio.run(main())

Run it (python hello-rototo.py) from the directory that holds app-config, and it prints:

---
standard: 50 USD
premium: 25 USD

Now edit free_shipping_threshold.toml, change the default to 35, and save. Because the package refreshes every second, the next tick shows:

---
standard: 50 USD
premium: 35 USD

Documentation

Public docs are available on rototo.dev. The rototo cli also ships with the same documents in markdown.

You and your agent can use the docs command in the cli:

# show available docs
rototo docs

# search for docs
rototo docs -s <search terms>

# fetch doc based on doc id prefix
rototo docs -p concepts

The use-cases page (rototo docs -p use-cases) tours what teams put in a package - release control, experiments, pricing, tenant overlays, regional policy, environment separation - and each job points at a worked example package under examples/ in this repository.

Rototo is designed for people and agents

Agents are now among the most important users of any development tool. Hence, Rototo is designed from ground up to work well both for people and agents.

  • The configuration package is simply a dir tree of files that brings battle-tested ergonomics of file organization and editing.
  • rototo docs to discover Rototo's capabilities and the recipes to use it.
  • rototo lint as the backbone for configuration validation that can be run after every edit.
  • rototo inspect to reason about the package structure and how everything resolves at runtime.
  • rototo resolve for test automation of invariants (e.g. customer X must always receive configuration Y otherwise something is wrong).
  • rototo lsp to provide feedback (and help) during editing.
  • The rototo console, a companion web app that ships separately as @rototo/console, for a friendly UI over inspecting and editing the package.

Roadmap: hard things rototo does not do yet

Runtime configuration earns trust in the ugly parts, not the feature tour, so we keep this list in the open. Each item is a real production complication we have looked at and not solved yet. (Some other hard things are deliberate non-goals rather than roadmap items: exposure logging and experiment stats, metric-driven auto-rollback, enumerated ID sets as targeting, secrets, identity resolution, and Terraform-style enforcement of resolved state all belong to the application or its other tools.)

For orientation, the things that used to be on this list and are now shipped and demonstrated under examples/: structured composition (entry add, update, and delete; atomic [resolve] override; namespaced variables; list member union and delete), the governance.toml layering contract enforced at compose time, layers and allocations for rollouts and experiments, catalog queries with filter/sort/limit and effective dating on env.now, and dev/staging/prod as vertical layers over one contract. What remains:

  1. Canarying a value change. Staged rollout for a change to an existing variable's value, not just for new features. Config changes cause outages at the same rate as code changes.
  2. A break-glass path. Kill switches need seconds; git review takes minutes to hours. An emergency change mechanism with mandatory post-hoc review.
  3. Flag lifecycle. Owner and expiry metadata on variables, staleness warnings, and a worked "concluding an experiment" example: winner folded into the default, allocation removed.
  4. Grandfathering. Pinning accounts to the plans and prices as of when they signed up: frozen old account classes beside evolving new ones.
  5. Totality lint. "Exactly one entry for every cell of plan x market": completeness over list cross-products, not just uniqueness.
  6. Jurisdiction dominance. A deny that no lower layer, experiment, or tenant override can re-enable. Governance narrows grants; it cannot yet pin an outcome.
  7. Time-boundary awareness. Timezone semantics for effective dates, and cache invalidation when a rule is known to flip at a time.
  8. Version-skew honesty. Consumers refresh independently; multi-variable changes are not atomic in effect.
  9. Weighted rollout units. Tenant-unit migrations where one tenant is a third of the load.
  10. The one-hop dereference built-in. Following a catalog reference to an expression-typed field during a query, so audiences can carry authored conditions instead of fixed data bounds.
  11. Contract lockdown for vertical layers. Environment layering wants a package-level governance default (a wildcard grant), and an overlay can still introduce a brand-new variable without any grant. "Environments differ in values, never in contract" is convention plus review, not yet a hard guarantee.
  12. The custom-lint execution boundary. Loading a package runs its Lua lint today, including for remote sources you do not control. The invariant to establish: loading or resolving a package never executes package-supplied code; only author-time gates (pre-push, CI) do.
  13. Nested trace provenance. A resolution trace says which rule matched, but not why a referenced condition variable was true; the trace should follow the reference chain. Related: variables have no visibility marker yet (app-facing versus internal helper), so the cross-variable dependency graph is disciplined only by convention.
  14. The web console, re-attached. The console predates the current package layout, composition, and resolution methods; it is parked outside the core gate until it is brought back up against today's engine.

License

Licensed under either of:

  • Apache License, Version 2.0
  • MIT license

at your option.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rototo-0.1.0a7.tar.gz (467.5 kB view details)

Uploaded Source

Built Distributions

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

rototo-0.1.0a7-cp310-abi3-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.10+Windows x86-64

rototo-0.1.0a7-cp310-abi3-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.28+ x86-64

rototo-0.1.0a7-cp310-abi3-manylinux_2_28_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.28+ ARM64

rototo-0.1.0a7-cp310-abi3-macosx_11_0_arm64.whl (5.7 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

rototo-0.1.0a7-cp310-abi3-macosx_10_12_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file rototo-0.1.0a7.tar.gz.

File metadata

  • Download URL: rototo-0.1.0a7.tar.gz
  • Upload date:
  • Size: 467.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rototo-0.1.0a7.tar.gz
Algorithm Hash digest
SHA256 5af7e56c9ec0eb5591a701c04681e7f6feff816d92968ecc704599fc6dd1f61c
MD5 7dd9873cf6238f4d1c3785cdb984010a
BLAKE2b-256 0735c4bdfb7ad9590e43f6b3375a5d6286f558740e81c01109ecb704b55a214a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rototo-0.1.0a7.tar.gz:

Publisher: release.yml on manasgarg/rototo

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

File details

Details for the file rototo-0.1.0a7-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: rototo-0.1.0a7-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rototo-0.1.0a7-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6c12d9a8664bffd2d5f7884aaf237359d750efbbcb5f67c41811d898241cb9d3
MD5 f14a663849ff1b54abd023351f717aaf
BLAKE2b-256 179bc7125f54fad54186211afceb6385a99c7e18c5ba69daf792c3cca52e859d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rototo-0.1.0a7-cp310-abi3-win_amd64.whl:

Publisher: release.yml on manasgarg/rototo

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

File details

Details for the file rototo-0.1.0a7-cp310-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rototo-0.1.0a7-cp310-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a993960d3f25124e398de6b8f1dd138de7ebabd8deffe50280888d98ce229535
MD5 87bcb829f0423f67301f7f68e73d4d64
BLAKE2b-256 cc7226d4ed7115d20716971207fe13932a2ef2aada3b4a10ad0101df29311328

See more details on using hashes here.

Provenance

The following attestation bundles were made for rototo-0.1.0a7-cp310-abi3-manylinux_2_28_x86_64.whl:

Publisher: release.yml on manasgarg/rototo

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

File details

Details for the file rototo-0.1.0a7-cp310-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rototo-0.1.0a7-cp310-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a74b9f899efc6620030f43034cb0cf23f4dd429d580be9c9657555a9839a5c76
MD5 2e538d3778556440886e352b829dcd22
BLAKE2b-256 37f5ba1586042bcf6328e0f0f1de519fe7b4d25c1bff268607cc35f717872d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for rototo-0.1.0a7-cp310-abi3-manylinux_2_28_aarch64.whl:

Publisher: release.yml on manasgarg/rototo

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

File details

Details for the file rototo-0.1.0a7-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rototo-0.1.0a7-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7399a19046efa6cb9fb180917339434ad46f8e3de315e5a927a31b3fb8dbe3f6
MD5 55d335081c48abeab27fbf30ca8a0953
BLAKE2b-256 9e8da06a7bd9deb8faec10ef561fff3be4e43c680af5fb4936907feca03b96cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rototo-0.1.0a7-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on manasgarg/rototo

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

File details

Details for the file rototo-0.1.0a7-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rototo-0.1.0a7-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd310cd40840ea6db8e7cc349d3016b08bf502df322e63aa99883f0a20c596f1
MD5 7e9822340fb5ba48b70dd9ab1d6a6736
BLAKE2b-256 a39074f7b412c5c7c0e1e0e589fb6f750c6fe712049a7c140d7ac3ebd4f7b6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rototo-0.1.0a7-cp310-abi3-macosx_10_12_x86_64.whl:

Publisher: release.yml on manasgarg/rototo

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 Sentry Error logging StatusPage Status page