Skip to main content

Tree model markup builder.

Project description

Pure pythonic tree structure model builder.

  • Enter tree nodes with python’s contextmanagers.

  • Cast the tree to given markup (basically it’s suited for XML).

  • Enjoy 1:1 translation from python to given markup.

Example

from xplant.xml import XmlPlant

x = XmlPlant()
with x.node("section_a", attribute_1=1):
    with x.node("nested_1", empty=True):
        pass
    with x.node("nested_2"):
        x.comment("Can handle also comments.")
        for number in range(3):
            x.leaf("a number {:02}".format(number), num=number)

print(x)

Will give:

<section_a attribute_1="1">
  <nested_1 empty="true"></nested_1>
  <nested_2>
    <!-- Can handle also comments. -->
    <a number 00 num="0" />
    <a number 01 num="1" />
    <a number 02 num="2" />
  </nested_2>
</section_a>

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xplant-0.2.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

xplant-0.2-py2.py3-none-any.whl (9.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page