class Shuffler:
Class Method | _hash_text |
Undocumented |
Method | __init__ |
Undocumented |
Method | _hash_item |
Undocumented |
Method | shuffle |
Return a new list of the items in a shuffled order. |
Class Variable | hash_algorithm |
Undocumented |
Instance Variable | seed |
Undocumented |
Instance Variable | seed_source |
Undocumented |
Property | seed_display |
Undocumented |
Return a new list of the items in a shuffled order.
The key
is a function that accepts an item in items
and returns
a string unique for that item that can be viewed as a string id. The
order of the return value is deterministic. It depends on the seed
and key function but not on the original order.