python html generator

前端 未结 9 1579
轮回少年
轮回少年 2020-12-04 22:28

I am looking for an easily implemented html generator for python. I found this one

http://www.decalage.info/python/html

but there is no wa

9条回答
  •  一生所求
    2020-12-04 22:49

    Ok, here's another html generator, or I prefer to think of it as a compiler.

    https://pypi.python.org/pypi/python-html-compiler

    This is a set of base classes that can be used to define tags and attributes. Thus a tag class has attributes and children. Children are themselves Tag classes that have attributes and children etc etc. Also you can set parameters that start with your root class and work up the various branches.

    This will allow you to define all the tag classes you want thus be able to create customised classes and implement any tags or attributes you want.

    Just started on this, so if anybody wants to test :)

提交回复
热议问题