Skip to content
Advertisement

how to get list of all variables in jinja 2 template file

I have a usecase where I want to get a list of unreferenced variables in a jinja2 template. I found some explanations on stackoverflow on how to do this, but not of these exaples use a file as a template, and I am very, very stuck

Here is my code. Lines 8 and 9 can be omitted, ofc.

JavaScript

here is the content of ‘testfile.txt’

JavaScript

here’s my output

JavaScript

What I would like to get as output is the string ‘bar’ in the set like below, as ‘bar’ is not referenced in the ‘data’ dict.

JavaScript

any help solving this would be greatly appreciated

Advertisement

Answer

First I want to make a clarification, jinja considers variables to be those that are assigned through the instance attribute global of Environment class. The global attribute is a dictionary that contains the variables that we are going to use in our template.

JavaScript

Result:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement