Table of Contents
The Stuffing for Other Functions!
Tea
A subclass of OrderedDict, with a few extra features:
from oreo import tea
gensing = tea("Hello,", name = "User")
gensing.glue("!")
gensing.append("How")
gensing.extend("are", "you")
gensing.glue(("?", "I", "feel", "great!"))
gensing()
# => Hello, User! How are you? I feel great!