Metadata-Version: 2.4
Name: variablesplus
Version: 3.0.0
Summary: A Python package for handling variables, also my first library. I hope you enjoy! You can create, clear, write to, delete and read variables. Safely.
Author: Egglord
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file
Dynamic: requires-python

# variables_plus

A simple Python library to create, clear, read, write and delete global variables.

This is my first python library :D

Commands:

vp.vp("create(variable=something)")   # Remove =something to create a blank variable.

vp.vp("clear(variable)")   # Leave clear() empty to clear all variables.

vp.vp("delete(variable)")   # Variable needs to exist.

vp.vp("read(variable)")   # Doesn't print it. Use print(vp.vp("read(variable)")) to print the variables contents.

vp.vp(“write(variable=something)”)   # Variable needs to exist.

vp.vp("SANDBOX()") # Add 0, 1 True or False between the brackets.

# !NB!

Use: pip install variablesplus

But, to import it: import vp
