csv2html.writer
index
csv2html/writer.py

# -*- coding: utf-8 -*-

 
Modules
       
datetime
os
sys

 
Classes
       
csv2html.io.IO(__builtin__.object)
Writer

 
class Writer(csv2html.io.IO)
    ライタ:情報のテーブルをHTMLページとして書き出す。
 
 
Method resolution order:
Writer
csv2html.io.IO
__builtin__.object

Methods defined here:
__init__(self, output_table)
ライタのコンストラクタ。HTMLページを基にするテーブルを受け取る。
perform(self)
HTMLページを基にするテーブルから、インデックスファイル(index_html)に書き出す。
write_body(self, file)
ボディを書き出す。つまり、属性リストを書き出し、タプル群を書き出す。
write_footer(self, file)
フッタを書き出す。
write_header(self, file)
ヘッダを書き出す。

Methods inherited from csv2html.io.IO:
attributes(self)
属性リストを応答する。
read_csv(self, filename)
指定されたファイルをCSVとして読み込む。
table(self)
テーブルを応答する。
tuples(self)
タプル群を応答する。
write_csv(self, filename, rows)
指定されたファイルにCSVとして行たち(rows)を書き出す。

Class methods inherited from csv2html.io.IO:
html_canonical_string(the_class, a_string) from __builtin__.type
指定された文字列をHTML内に記述できる正式な文字列に変換して応答する。

Data descriptors inherited from csv2html.io.IO:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)