aboutsummaryrefslogtreecommitdiff
path: root/devel/py-elementtree/pkg-descr
diff options
context:
space:
mode:
authorSimon Barner <barner@FreeBSD.org>2005-03-02 16:20:25 +0000
committerSimon Barner <barner@FreeBSD.org>2005-03-02 16:20:25 +0000
commit98b01656eb7386924d2cb54564d6981d30d88dc2 (patch)
tree3214713994c21917b05ea4dfbce07bd13578bd40 /devel/py-elementtree/pkg-descr
parent51d9f1a0ba3e1622a531ce165719dc1101d5bb38 (diff)
downloadports-98b01656eb7386924d2cb54564d6981d30d88dc2.tar.gz
ports-98b01656eb7386924d2cb54564d6981d30d88dc2.zip
Notes
Diffstat (limited to 'devel/py-elementtree/pkg-descr')
-rw-r--r--devel/py-elementtree/pkg-descr19
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/py-elementtree/pkg-descr b/devel/py-elementtree/pkg-descr
new file mode 100644
index 000000000000..fce712f92fb7
--- /dev/null
+++ b/devel/py-elementtree/pkg-descr
@@ -0,0 +1,19 @@
+Adopted from the documentation:
+
+The Element type is a flexible container object, designed to store hierarchical
+data structures in memory. The type can be described as a cross between a list
+and a dictionary.
+
+Each element has a number of properties associated with it:
+
+ * a tag. This is a string identifying what kind of data this element
+ represents (the element type, in other words).
+ * a number of attributes, stored in a Python dictionary.
+ * a text string.
+ * an optional tail string.
+ * a number of child elements, stored in a Python sequence
+
+The ElementTree class can be used to wrap an element structure, and convert it
+from and to XML.
+
+WWW: http://effbot.org/zone/element-index.htm