burst package

Submodules

burst.burst module

burst.client module

burst.filtering module

burst.ordereddict module

class burst.ordereddict.OrderedDict(*args, **kwds)[source]

Bases: dict, UserDict.DictMixin

Backport of collections.OrderedDict for Python 2.6 (Kodi 16)

clear() → None. Remove all items from D.[source]
popitem() → (k, v), remove and return some (key, value) pair as a[source]

2-tuple; but raise KeyError if D is empty.

keys() → list of D's keys[source]
setdefault(k[, d]) → D.get(k,d), also set D[k]=d if k not in D
update([E, ]**F) → None. Update D from dict/iterable E and F.

If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]

pop(k[, d]) → v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised

values() → list of D's values
items() → list of D's (key, value) pairs, as 2-tuples
iterkeys() → an iterator over the keys of D
itervalues() → an iterator over the values of D
iteritems() → an iterator over the (key, value) items of D
copy() → a shallow copy of D[source]
classmethod fromkeys(S[, v]) → New dict with keys from S and values equal to v.[source]

v defaults to None.

burst.provider module

burst.utils module