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
from tensnap.bindings import (
    BindParametersConfig,
    agent,
    agent_layer,
    chart,
    env,
    grid_layer,
)


@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(width="width", height="height")
@agent_layer("birds", item_iterable_projector="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)


class Config:
    speed = 1.0


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

scenario.add_environment(model)
scenario.add_parameters(config, BindParametersConfig(exclude="^_"))
scenario.add_charts(model)


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.

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. If you need extra actions, attach them with @action(...) and register them with scenario.add_actions(target).

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.

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.0.tar.gz (53.3 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.0-py3-none-any.whl (51.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tensnap-0.2.0.tar.gz
  • Upload date:
  • Size: 53.3 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.0.tar.gz
Algorithm Hash digest
SHA256 7f3ced1495554b19017526606e8e87ac3217da136d6a6ed0f3770c3da7872552
MD5 4d2cbaaad43cb6d3684da72674025046
BLAKE2b-256 9a3d04b4d3151cfc35da4c84125e19aaefea7d3755125b4807e3706b43827b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for tensnap-0.2.0.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.0-py3-none-any.whl.

File metadata

  • Download URL: tensnap-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 51.4 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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7dd0346a571fe70a527be1fc09d4ce25efa01fa6c68b2fb9f171c4345f38241d
MD5 894ed87387397dd3f394776407f7acae
BLAKE2b-256 5dc4f19a77125fc2db0185bb743e882fa802edb641079bb3098a2e702ba2ec22

See more details on using hashes here.

Provenance

The following attestation bundles were made for tensnap-0.2.0-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