Utils
batched(iterable, n)
Batch data into tuples of length n. The last batch may be shorter. from https://docs.python.org/3/library/itertools.html#itertools-recipes
Source code in video_sampler/utils.py
27 28 29 30 31 32 33 34 35 36 |
|
slugify(value, allow_unicode=False)
Taken from https://github.com/django/django/blob/master/django/utils/text.py Convert to ASCII if 'allow_unicode' is False. Convert spaces or repeated dashes to single dashes. Remove characters that aren't alphanumerics, underscores, or hyphens. Convert to lowercase. Also strip leading and trailing whitespace, dashes, and underscores.
Source code in video_sampler/utils.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|