mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
17 lines
344 B
Python
17 lines
344 B
Python
|
|
import py
|
|
class ns(py.xml.Namespace):
|
|
pass
|
|
|
|
doc = ns.books(
|
|
ns.book(
|
|
ns.author("May Day"),
|
|
ns.title("python for java programmers"),),
|
|
ns.book(
|
|
ns.author("why", class_="somecssclass"),
|
|
ns.title("Java for Python programmers"),),
|
|
publisher="N.N",
|
|
)
|
|
print doc.unicode(indent=2).encode('utf8')
|
|
|
|
|