Jinja reserved keywords
Last updated
Was this helpful?
Jinja, like many programming and templating languages, has a set of reserved keywords that can't be used as identifiers for variables, functions, or other custom elements within your templates. These keywords are integral to Jinja's syntax and functionality.
Always prefix your own variables and function names to avoid collision with these reserved words.
Use these words in the appropriate context to ensure readability and maintainability.
if, elif, else: Conditional statements
for: Looping through sequences
while: Loop based on a condition
try, except, finally: Exception handling
with: Context management
True, False: Boolean values
None: Represents null value
del: Deletes a variable
def: Function definition
return: Returns a value from a function
yield: Produces a generator
lambda: Anonymous function
class: Defines a class
and, or, not: Logical operators
in, is: Comparison operators
raise: Raise an exception
assert: Assertion statement
break, continue: Loop control
pass: Null operation
global, nonlocal: Scope specifiers
split: Splits a string into a list
items: Returns a list of dictionary's key-value tuple pairs
replace: Replaces a string with another string
get: Retrieves the value of a dictionary key
result, results: Used in Rewst to store outputs. Note that these are not built-in methods, they're used in Rewst as variable named to store outputs and should not cause issues.
import: Importing modules
from: Specifies what attributes to import from a module
JSON cannot serialize 'builtin_function_or_method': <built-in method items of dict object at 0x7f618cb407c0>
Ensure that you're not inadvertently referencing a built-in method like items as an object when you actually intend to use its output. Execute the method first before attempting to serialize it to JSON.
If the output of an API call stores all the items in a key named items, reference it like this:
This ensures that you're referencing the actual data rather than the built-in items method, thus avoiding the serialization issue.
Last updated
Was this helpful?
Was this helpful?
{{CTX.customers.data["items"]}}