{{ file.mod_path }}

{% if file.datablocks.__len__() != 0 %} Datablocks

{% endif %} {% for datablock in file.datablocks %}
{% for property in datablock.properties %} {% endfor %}
Property Name Property Value
{{ property }} {{ datablock.properties[property] }}

{% endfor %} {% if file.global_functions.__len__() != 0 %} Global Functions

{% endif %} {% for function in file.global_functions %}
{% for parameter in function.parameters %} {% endfor %}
Parameter Name
{{ parameter }}

{% endfor %} {% if file.bound_functions.__len__() != 0 %} Bound Functions

{% endif %} {% for class in file.bound_functions %}
{% for function in file.bound_functions[class] %} {% endfor %}
Function Name Parameter Count
{{ function.name }} {{ function.parameters.__len__() }}

{% endfor %}
This file was auto-generated by TS Scraper.
TS Scraper is written in Python 2.7 by Robert MacGregor.