iter (32)
any¶
any(seq: collections.abc.Iterable[typing.Any], attribute: str | None = None) -> bool
Check if at least one of the item in the sequence evaluates to true.
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
seq
|
Iterable[Any]
|
An iterable object. |
required |
attribute
|
str | None
|
The attribute name to use on each object of the iterable. |
None
|
Source code in src/jinjarope/iterfilters.py
281 282 283 284 285 286 287 288 289 290 291 292 |
|
batch¶
batch(value: Iterable[~V], linecount: int, fill_with: Optional[~V] = None) -> Iterator[List[~V]]
A filter that batches items. It works pretty much like slice
Example
Jinja call:
Result:[['a', 'b'], ['c', 'd'], ['e']]
Example
Jinja call:
Result:[['a', 'b'], ['c', 'x']]
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 |
|
batched¶
batched(iterable: collections.abc.Iterable[~T], n: int) -> collections.abc.Generator[tuple[~T, ...], None, None]
Batch data into tuples of length n. The last batch may be shorter.
Example
Jinja call:
Result:0: 1
2: 3
4: 5
6: 7
8: 9
DocStrings
Examples:
batched('ABCDEFG', 3) # returns ABC DEF G
Parameters:
Name | Type | Description | Default |
---|---|---|---|
iterable
|
Iterable[T]
|
The iterable to yield as batches |
required |
n
|
int
|
The batch size |
required |
Source code in src/jinjarope/iterfilters.py
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
|
chain¶
chain(*iterables: collections.abc.Iterable[~T]) -> itertools.chain[~T]
Chain all given iterators.
Example
Jinja call:
Result:0
1
2
0
1
2
3
4
DocStrings
Examples:
chain('ABC', 'DEF') --> A B C D E F
Source code in src/jinjarope/iterfilters.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
combinations¶
combinations(iterable, r)
Return successive r-length combinations of elements in the iterable.
Example
Jinja call:
Result:('A', 'B')
('A', 'C')
('A', 'D')
('B', 'C')
('B', 'D')
('C', 'D')
DocStrings
combinations_with_replacement¶
combinations_with_replacement(iterable, r)
Return successive r-length combinations of elements in the iterable allowing individual elements to have successive repeats.
Example
Jinja call:
Result:('A', 'A')
('A', 'B')
('A', 'C')
('B', 'B')
('B', 'C')
('C', 'C')
DocStrings
compress¶
compress(data, selectors)
Return data elements corresponding to true selector elements.
Example
Jinja call:
Result:A
C
E
F
DocStrings
first¶
first(environment: 'Environment', seq: 't.Iterable[V]') -> 't.Union[V, Undefined]'
Return the first item of a sequence.
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
650 651 652 653 654 655 656 657 |
|
flatten_dict¶
flatten_dict(dct: collections.abc.Mapping, sep: str = '/', _parent_key: str = '') -> collections.abc.Mapping
Flatten a nested dictionary to a flat one.
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dct
|
Mapping
|
The dictionary to flatten |
required |
sep
|
str
|
The separator to use for joining |
'/'
|
Source code in src/jinjarope/iterfilters.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|
groupby¶
groupby(environment: 'Environment', value: 't.Iterable[V]', attribute: Union[str, int], default: Optional[Any] = None, case_sensitive: bool = False) -> 't.List[_GroupTuple]'
Group a sequence of objects by an attribute using Python's
Example
Jinja call:
Result:[('jinja2.utils', [<class 'jinja2.utils.Cycler'>])]
Example
Jinja call:
{{ [{"name": "A", "type": 1}, {"name": "B", "type": 1}, {"name": "C", "type": 2}] | groupby("type") | list }}
[(1, [{'name': 'A', 'type': 1}, {'name': 'B', 'type': 1}]), (2, [{'name': 'C', 'type': 2}])]
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 |
|
groupby_first_letter¶
groupby_first_letter(data: collections.abc.Iterable[~T], keyfunc: collections.abc.Callable[..., typing.Any] | None = None) -> dict[str, list[~T]]
Group given iterable by first letter.
Example
Jinja call:
Result:{'A': ['apple', 'avocado'], 'B': ['banana', 'blueberry'], 'C': ['carrot', 'cherry']}
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Iterable[T]
|
Iterable to group |
required |
keyfunc
|
Callable[..., Any] | None
|
Optional alternative sort function |
None
|
Source code in src/jinjarope/iterfilters.py
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
groupby_plus¶
groupby_plus(data: collections.abc.Iterable[~T], key: collections.abc.Callable[[~T], typing.Any] | str | None = None, *, sort_groups: bool = True, natural_sort: bool = False, reverse: bool = False) -> dict[str, list[~T]]
Group given iterable using given group function.
Example
Jinja call:
Result:{'0': ['0'], '20': ['20', '20'], '100': ['100']}
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Iterable[T]
|
Iterable to group |
required |
key
|
Callable[[T], Any] | str | None
|
Sort function or attribute name to use for sorting |
None
|
sort_groups
|
bool
|
Whether to sort the groups |
True
|
natural_sort
|
bool
|
Whether to use a natural sort algorithm |
False
|
reverse
|
bool
|
Whether to reverse the value list |
False
|
Source code in src/jinjarope/iterfilters.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
|
islice¶
islice(iterable: 'Iterable[T]', *args: 'int | None') -> 'itertools.islice[T]'
Make an iterator that returns selected elements from the iterable.
DocStrings
Examples:
islice('ABCDEFG', 2) --> A B
islice('ABCDEFG', 2, 4) --> C D
islice('ABCDEFG', 2, None) --> C D E F G
islice('ABCDEFG', 0, None, 2) --> A C E G
Parameters:
Name | Type | Description | Default |
---|---|---|---|
iterable
|
Iterable[T]
|
Iterable to slice |
required |
args
|
int | None
|
Arguments passed to itertools.islice |
()
|
Source code in src/jinjarope/iterfilters.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
|
join¶
join(eval_ctx: 'EvalContext', value: Iterable[Any], d: str = '', attribute: Union[str, int, NoneType] = None) -> str
Return a string which is the concatenation of the strings in the
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
624 625 626 627 628 629 630 631 |
|
last¶
last(environment: 'Environment', seq: 't.Reversible[V]') -> 't.Union[V, Undefined]'
Return the last item of a sequence.
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 |
|
length¶
length(obj, /)
Return the number of items in a container.
Aliases: count
DocStrings
natsort¶
natsort(val: collections.abc.Iterable[~T], key: str | collections.abc.Callable[[~T], typing.Any] | None = None, reverse: bool = False, ignore_case: bool = True) -> collections.abc.Iterable[~T]
Using the natsort package, sort a list naturally.
Required packages: natsort
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
Iterable[T]
|
the iterable to sort |
required |
key
|
str | Callable[[T], Any] | None
|
If str, sort by attribute with given name. If callable, use it as keygetter. If None, sort by objects itself |
None
|
reverse
|
bool
|
Whether to reverse the sort order |
False
|
ignore_case
|
bool
|
Whether to ignore case for sorting |
True
|
Source code in src/jinjarope/iterfilters.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
pairwise¶
pairwise(items: 'Iterable[T]') -> 'itertools.pairwise[tuple[T, T]]'
Return an iterator of overlapping pairs taken from the input iterator.
Example
Jinja call:
Result:1: 2
2: 3
3: 4
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
items
|
Iterable[T]
|
The items to iter pair-wise |
required |
Source code in src/jinjarope/iterfilters.py
12 13 14 15 16 17 18 19 20 |
|
permutations¶
permutations(iterable, r=None)
Return successive r-length permutations of elements in the iterable.
Example
Jinja call:
Result:('A', 'B')
('A', 'C')
('A', 'D')
('B', 'A')
('B', 'C')
('B', 'D')
('C', 'A')
('C', 'B')
('C', 'D')
('D', 'A')
('D', 'B')
('D', 'C')
DocStrings
product¶
product(*iterables: 'Iterable[Any]', repeat: 'int' = 1) -> 'itertools.product[tuple[Any, ...]]'
Cartesian product of input iterables.
Example
Jinja call:
Result:('A', 'x')
('A', 'y')
('B', 'x')
('B', 'y')
('C', 'x')
('C', 'y')
('D', 'x')
('D', 'y')
DocStrings
Examples:
product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111
Parameters:
Name | Type | Description | Default |
---|---|---|---|
iterables
|
Iterable[Any]
|
The iterables to create a cartesian product from |
()
|
repeat
|
int
|
The amount of repititions |
1
|
Source code in src/jinjarope/iterfilters.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
reduce_list¶
reduce_list(items: collections.abc.Iterable[~T]) -> list[~T]
Reduce duplicate items in a list and preserve order.
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
items
|
Iterable[T]
|
The iterable to recude to a unique-item list |
required |
Source code in src/jinjarope/iterfilters.py
148 149 150 151 152 153 154 |
|
reject¶
reject(context: 'Context', value: 't.Iterable[V]', *args: Any, **kwargs: Any) -> 't.Iterator[V]'
Filters a sequence of objects by applying a test to each object,
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1600 1601 1602 1603 1604 1605 1606 1607 |
|
rejectattr¶
rejectattr(context: 'Context', value: 't.Iterable[V]', *args: Any, **kwargs: Any) -> 't.Iterator[V]'
Filters a sequence of objects by applying a test to the specified
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1678 1679 1680 1681 1682 1683 1684 1685 |
|
repeat¶
repeat(obj: ~T, times: int | None = None) -> collections.abc.Iterable[~T]
Make an iterator that returns object over and over again.
DocStrings
Examples:
repeat(10, 3) --> 10 10 10
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj
|
T
|
The object to return over and over again |
required |
times
|
int | None
|
The amount of times to return the object (None means infinite) |
None
|
Source code in src/jinjarope/iterfilters.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
reverse¶
reverse(value: Union[str, Iterable[~V]]) -> Union[str, Iterable[~V]]
Reverse the object or return an iterator that iterates over it the other
Example
Jinja call:
Result:<list_reverseiterator object at 0x7f827f335630>
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 |
|
select¶
select(context: 'Context', value: 't.Iterable[V]', *args: Any, **kwargs: Any) -> 't.Iterator[V]'
Filters a sequence of objects by applying a test to each object,
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1564 1565 1566 1567 1568 1569 1570 1571 |
|
selectattr¶
selectattr(context: 'Context', value: 't.Iterable[V]', *args: Any, **kwargs: Any) -> 't.Iterator[V]'
Filters a sequence of objects by applying a test to the specified
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1640 1641 1642 1643 1644 1645 1646 1647 |
|
slice¶
slice(value: Collection[~V], slices: int, fill_with: Optional[~V] = None) -> Iterator[List[~V]]
Slice an iterator and return a list of lists containing
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
1089 1090 1091 1092 1093 1094 1095 |
|
sort¶
sort(environment: 'Environment', value: 't.Iterable[V]', reverse: bool = False, case_sensitive: bool = False, attribute: Union[str, int, NoneType] = None) -> 't.List[V]'
Sort an iterable using Python's :func:sorted
.
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 |
|
unique¶
unique(environment: 'Environment', value: 't.Iterable[V]', case_sensitive: bool = False, attribute: Union[str, int, NoneType] = None) -> 't.Iterator[V]'
Returns a list of unique items from the given iterable.
DocStrings
Source code in .venv/lib/python3.12/site-packages/jinja2/filters.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
|
zip¶
zip(*items: 'Iterable[T]') -> 'zip[tuple[T, ...]]'
Zip iterables into a single one.
Example
Jinja call:
Result:1: 3
2: 4
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
items
|
Iterable[T]
|
The iterables to zip |
()
|
Source code in src/jinjarope/iterfilters.py
139 140 141 142 143 144 145 |
|
zip_longest¶
zip_longest(*iterables: collections.abc.Iterable[typing.Any], fillvalue: Any = None) -> collections.abc.Iterable[typing.Any]
Make an iterator that aggregates elements from each of the iterables.
Example
Jinja call:
Result:('A', 'x', '-')
('B', 'y', None)
('C', None, None)
('D', None, None)
DocStrings
Examples:
zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-
Parameters:
Name | Type | Description | Default |
---|---|---|---|
iterables
|
Iterable[Any]
|
The iterables to zip |
()
|
fillvalue
|
Any
|
value to use for filling in case the iterables are of uneven length |
None
|
Source code in src/jinjarope/iterfilters.py
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|