#!/usr/bin/env python3 import sys import csv print("""
Iptc datasets defined in Exiv2

Datasets are defined according to the specification of the Iptc Information Interchange Model (IIM).

Click on a column header to sort the table.

""") row=0 data = sys.stdin.readlines() for line in csv.reader(data,quotechar='"',skipinitialspace=True): row=row+1 print(" " % row) print(" " + line[ 0] + "") print(" " + line[ 1] + "") print(" " + line[ 2] + "") print(" " + line[ 3] + "") print(" " + line[ 4] + "") print(" " + line[ 5] + "") print(" " + line[ 6] + "") print(" " + line[ 7] + "") print(" " + line[ 8] + "") print(" " + line[ 9] + "") print(" " + line[10] + "") print(" ") print("") print("
")