{% load artsurvey_templates %} {% load heasarc_templates %} {% load srgcat_templates %} {% load i18n %} {% load static %} {% block title %}SRG ArXiv{% endblock %} {% block header %}{% endblock %} {% block content %}{% endblock %}

Code for reading CSV catalog:

import csv
with open(filename, 'r' ) as theFile:
    reader = csv.DictReader(theFile)
    for line in reader:
        print(line['NAME'])