#! /usr/bin/env python3 #=============================== # # html_body # # 2021/02/09 Kuninori Morimoto #=============================== import html_base from html_base import html #==================================== # # periject_html # #==================================== class periject_html(html_base.myhtml): #-------------------- # print #-------------------- def print(self): self.print_css("html") with html("body", {"onload":"parent.frames['menu'].location.reload()"}): html("div").print("select tasks from menu") #==================================== # # As command # #==================================== if __name__=='__main__': periject_html().print()