{% extends "base.html" %} {% block title %}Create Data Store - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Create Data Store

Create a new key-value store for your scripts

{% csrf_token %}
{{ form.name }} {% if form.name.help_text %}

{{ form.name.help_text }}

{% endif %} {% if form.name.errors %}

{{ form.name.errors.0 }}

{% endif %}
{{ form.description }} {% if form.description.help_text %}

{{ form.description.help_text }}

{% endif %} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}

How it works

  • Data stores provide simple key-value storage
  • Values can be any JSON-serializable data
  • Data persists between script runs
  • Access from scripts using DataStore("name")
Cancel
{% endblock %}