ocarina/html/test.py

26 lines
657 B
Python

# Bryan Schumaker
import libsaria
library = libsaria.sources.library
walk = library.walk
get_attrs = library.get_attrs
def header(wfile):
wfile.write("<html><body>")
def footer(wfile):
wfile.write("</body></html>")
def body(wfile):
wfile.write("<table border=1>")
for id in library.walk():
#attrs = get_attrs(id, "id", "title", "lenstr", "artist", "album", "year")
artist, album, title = library.get_attrs(id, "artist", "album", "title")
wfile.write("<tr><td>%s</td><td>%s</td><td>%s</td></tr>" % (artist, album, title))
wfile.write("</table>")
#wfile.write("Python!!!")
def to_html(wfile):
header(wfile)
body(wfile)
footer(wfile)