Module spin_sdk.variables

Module for interacting with Spin Variables

Functions

async def get(key: str) ‑> str
Expand source code
async def get(key: str) -> str:
    """
    Gets the value of the given key
    """
    return await variables.get(key)

Gets the value of the given key