Contains Tkinter Variable subclasses for List and Dict variables.
This module exists to supplement the built-in Tkinter Variable types, which do not provide list and dict equivalents.
A tk Variable suitable for associating with Listboxes.
Create a ListVar with a given master and initial list of items.
Append an item to the list.
Return the number of items in the list.
Get the entire list of values.
Return the index of the given value.
Insert an item into the list at the specified index.
Pop an item off the list and return it.
Remove the item from the list, if it exists.
Set the entire list of values.