Description

CSV is the base class of CSV (Comma Separated Values) files (extension .csv)

The first line of a CSV file should list the different field names. The first non-alphanumeric character on this line will be used as a field separator for the whole file.

Examples

CSV file content:
name,phone
bill,692455
joe,702369
helen,331512
Using this CSV file:
<div py:rep="for item in file"> <b py:sub="item.name">Name</b> <span py:rep="item.phone">###</span> <br> </div>      display csv content