freebsd-ports/textproc/py-untangle/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

11 lines
533 B
Text

untangle is a tiny Python library which converts an XML document to a Python
object.
Features:
- Siblings with similar names are grouped into a list.
- Children can be accessed with parent.child, attributes with
element['attribute'].
- You can call the parse() method with a filename, an URL or an XML string.
- Substitutes -, . and : with _ <foobar><foo-bar/></foobar> can be accessed with
foobar.foo_bar, <foo.bar.baz/> can be accessed with foo_bar_baz and
<foo:bar><foo:baz/></foo:bar> can be accessed with foo_bar.foo_baz