Skip to main content

Agent-based model visualization toolkit - Python bindings

Project description

Tensnap Python Bindings

Python bindings for the Tensnap protocol v0.2 runtime.

Installation

pip install tensnap

Quick Start

import asyncio

from tensnap import (
    SimulationScenario,
    agent,
    agent_layer,
    chart,
    env,
    grid_layer,
    params,
)


@agent(x="position[0]", y="position[1]")
class Bird:
    def __init__(self, bird_id: int, position: tuple[int, int]):
        self.id = bird_id
        self.position = position


@grid_layer()
@agent_layer("birds")
@env(id="main")
class Aviary:
    def __init__(self):
        self.width = 20
        self.height = 10
        self.birds = [Bird(1, (2, 3)), Bird(2, (4, 5))]

    def step(self) -> None:
        for bird in self.birds:
            x, y = bird.position
            bird.position = (x + 1, y)

    @chart("population", "Population")
    def population(self) -> int:
        return len(self.birds)


@params(include=["speed"])
class Config:
    speed = 1.0


scenario = SimulationScenario(port=8765)
model = Aviary()
config = Config()

scenario.add_all(model)
scenario.add_all(config)


async def main() -> None:
    await scenario.register_model_handler(model_step=model.step)
    await scenario.run()


if __name__ == "__main__":
    asyncio.run(main())

tensnap.bindings is the unified attach/readback surface for Python bindings. Use it for decorators such as env, grid_layer, and agent_layer, and for readback helpers such as environment_binding, layer_bindings, and bindings.

Layer and item binding fields now support these common forms:

  • omitted fields, None, or auto() for one-time same-name discovery from the class or initialized instance
  • selector strings such as x="pos[0]" or item_iterable_projector="agents" when the source path differs from the output field or layer id
  • literal values such as coord_offset="float" or icon="circle"; arbitrary strings still default to selectors unless they match a known literal value, CSS-like string such as "#3498db", or JSON-like string
  • explicit helpers such as attr("pos[0]"), value("red"), auto(), and skip()
  • direct callables such as size=lambda agent: agent.radius

None/auto() field discovery is resolved once when instances initialize or when layer_bindings(instance) materializes an instance-specific binding, so fields assigned in __init__ are picked up without scanning during projection:

from tensnap import agent, agent_layer, grid_layer, value


@agent(x="position[0]", y="position[1]", color=value("red"))
class Bird:
    def __init__(self, bird_id: int, position: tuple[int, int]):
        self.id = bird_id
        self.position = position


@grid_layer()
@agent_layer("birds")
class Aviary:
    def __init__(self):
        self.width = 20
        self.height = 10
        self.birds = [Bird(1, (2, 3))]

SimulationScenario registers the renderer-driven built-in actions start, step, and reset during construction. The initial synchronized state is always time 0, and the first simulated tick emitted by start or step is 1. For most targets, use scenario.add_all(target) to register available environment/layer, chart, and action bindings. Parameters are opt-in with @params(...) or an explicit config.

register_model_handler(model_init=None, model_step=None, model_reset=None) lets you keep reset distinct from init. If model_reset is omitted, the default handler falls back to model_init.

add_all(..., dry_run=True) and the targeted add_* dry-run modes report registry ids without mutating the scenario. Mesa lifecycle helpers use this to unregister and rebuild model-owned registrations cleanly.

For Mesa models, prefer BoundModelReinitializer from tensnap or tensnap.bindings.lifecycle. Use bind_kwargs(...) to expose constructor keyword arguments as resettable parameters when needed. When a constructor kwarg and a model-owned parameter publish the same source field during register_model(), the model parameter keeps UI ownership and the reinitializer aliases its reset value from the model field instead of registering a duplicate kwarg parameter. configure_reinit(...) now applies the default Mesa cleanup automatically when no explicit cleanup callback is provided.

Examples

Example simulations are located in the repository root:

  • examples/python/ - Standard Python examples (flock, hk, sirs)
  • examples/python_mesa/ - Mesa-based examples (cgol, sugarscape, mushroom)

Documentation

Full documentation: https://github.com/billstark001/tensnap

License

See LICENSE file in the repository root.

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

tensnap-0.2.3.tar.gz (81.7 kB view details)

Uploaded Source

Built Distribution

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

tensnap-0.2.3-py3-none-any.whl (75.2 kB view details)

Uploaded Python 3

File details

Details for the file tensnap-0.2.3.tar.gz.

File metadata

  • Download URL: tensnap-0.2.3.tar.gz
  • Upload date:
  • Size: 81.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tensnap-0.2.3.tar.gz
Algorithm Hash digest
SHA256 83dac51cd96252095835237c246b1d8fa9185a41ba5b61600cbc88f836986b14
MD5 49a7a600094e5cb145a265f508169fcd
BLAKE2b-256 34cf0f3b21836234e6fb10f7de7658e3b9a1c394e592d832c07d845de9755a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for tensnap-0.2.3.tar.gz:

Publisher: python-publish.yml on billstark001/tensnap

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

File details

Details for the file tensnap-0.2.3-py3-none-any.whl.

File metadata

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

File hashes

Hashes for tensnap-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4051c0020454a88b2e1ddf8d866127a730f79d7f0d844db0c53d5a3ee6c2e0a1
MD5 c54963c97a17870ce54d68894b367f16
BLAKE2b-256 7a60ffdb62cb08dd353eb67d858a72a6b35bd4bd08bc82ef62a5e3c2a88b2a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for tensnap-0.2.3-py3-none-any.whl:

Publisher: python-publish.yml on billstark001/tensnap

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