blob: 3ca1de2ea5ed586d2ce34a887de2f67b9d0036bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#! /usr/bin/env python3
#===============================
#
# html_body
#
# 2021/02/09 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
#===============================
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"):
html("div").print("select tasks from menu")
#====================================
#
# As command
#
#====================================
if __name__=='__main__':
periject_html().print()
|