Module spin_sdk.variables

Module for interacting with Spin Variables

Expand source code
"""Module for interacting with Spin Variables"""

from spin_sdk.wit.imports import variables

def get(key: str):
    """
    Gets the value of the given key
    """
    return variables.get(key)

Functions

def get(key: str)

Gets the value of the given key

Expand source code
def get(key: str):
    """
    Gets the value of the given key
    """
    return variables.get(key)